The following instructions demonstrate installing .NET 7 on Linux. These instructions augment the more general .NET install instructions, including installing with .tar.gz
files, that work on multiple operating systems.
Linux package dependencies describes the set of packages required to run .NET on Linux.
The following distributions are available for Linux:
We recommend you install the .NET SDK to develop and build applications, and to install one of the runtimes packages (like ASP.NET Core) to exclusively run applications.
Each of the distributions can be downloaded from:
Container images are provided for Linux (Alpine, Debian, and Ubuntu).
Preview release installers are not available from the Microsoft package repositories. The steps below provide an easy way to install .NET 7 using your Distro package manager.
Note: curl
must be available on the system before running the following steps. Once you have confirmed that curl
is available, complete the steps to download and install the latest .NET 7 Preview SDK and Runtime.
mkdir $HOME/dotnet_install && cd $HOME/dotnet_install
curl -L https://aka.ms/install-dotnet-preview -o install-dotnet-preview.sh
sudo bash install-dotnet-preview.sh
Here’s what the script does.
tar
is used to unpack that installer packages.rpm
or dpkg
, as appropriate, for the detected distribution.You can use Snap is to install and try .NET Previews on Linux distributions that support Snap.
After configuring Snap on your system, run the following command to install the latest .NET SDK.
sudo snap install dotnet-sdk --channel=7.0/beta --classic
When .NET is installed using the Snap package, the default .NET command is dotnet-sdk.dotnet
, as opposed to just dotnet
. The benefit of the namespaced command is that it will not conflict with a globally installed .NET version you may have. This command can be aliased to dotnet
with:
sudo snap alias dotnet-sdk.dotnet dotnet
Note: Some distributions require an additional step to enable access to the SSL certificate. If you experience SSL errors when running dotnet restore
, see Linux Setup for a possible resolution.
You can install .NET with a binary archive. This option is required if you want to install .NET for a single user. It is also recommended if you want to install .NET temporarily.
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/f5c74056-330b-452b-915e-d98fda75024e/18076ca3b89cd362162bbd0cbf9b2ca5/dotnet-sdk-7.0.100-rc.2.22477.23-linux-x64.tar.gz
~# mkdir dotnet
~# tar -C dotnet -xf dotnet.tar.gz
~# rm dotnet.tar.gz
~# export DOTNET_ROOT=~/dotnet
~# export PATH=$PATH:~/dotnet
~# dotnet --version
7.0.100-rc.2.22477.23
The DOTNET_ROOT
environment variable is required to launch an application with their executables (like myapp.exe
). The executables look for this environment variable to find the runtime if it isn’t installed in its regular location. The PATH
environment variable must be updated if you want to use dotnet
without absolute paths to its location. Setting both of these environment variables is optional.
You can add your .NET install location permanently to your path if you’d like.