Skip to content

Latest commit

 

History

History
107 lines (87 loc) · 2.8 KB

linux-packages.md

File metadata and controls

107 lines (87 loc) · 2.8 KB

.NET 9 Linux package dependencies

.NET 9 has several dependencies that must be satisfied to run .NET apps. The commands to install these libraries are listed for multiple Linux distributions.

Feel free to contribute packages for distributions not (yet) listed in this document, including ones not supported by the .NET Team.

Tips:

  • runtime-deps container images install these same packages. You can look at those dockerfiles.
  • pkgs.org is a useful site for searching for packages, to find the one for your distribution.

Packages

.NET depends on the following packages.

You do not need to install ICU if you enable globalization invariant mode.

If your app relies on https endpoints, you'll also need to install ca-certificates.

Alpine 3.19

sudo apk add \
        libgcc \
        libssl3 \
        libstdc++ \
        zlib

Debian 12 "bookworm"

sudo apt-get update \
    &&sudo apt-get install -y --no-install-recommends \
        libc6 \
        libgcc-s1 \
        libicu72 \
        libssl3 \
        libstdc++6 \
        tzdata \
        zlib1g \

Debian 11 "Bullseye"

sudo apt-get update \
    &&sudo apt-get install -y --no-install-recommends \
    libc6 \
    libgcc1 \
    libgssapi-krb5-2 \
    libicu67 \
    libssl1.1 \
    libstdc++6 \
    zlib1g

Ubuntu 23.10"Mantic"

sudo apt-get update \
    &&sudo apt-get install -y --no-install-recommends \
        libc6 \
        libgcc-s1 \
        libicu72 \
        libssl3 \
        libstdc++6 \
        tzdata \
        zlib1g \

Ubuntu 22.04 "Jammy"

sudo apt-get update \
    &&sudo apt-get install -y --no-install-recommends \
        libc6 \
        libgcc-s1 \
        libicu70 \
        libssl3 \
        libstdc++6 \
        tzdata \
        zlib1g \

Community supported distros

The following distros are not supported by the .NET team. The following package information is provided on an as-is basis. Feel free to contribute package information for the distro you use .NET with if it isn't listed.

Arch Linux

sudo pacman -Sy \
    glibc \
    gcc \
    krb5 \
    icu \
    openssl \
    libc++ \
    zlib

This set of packages was tested on the Arch and Manjaro.