Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 999 Bytes

Software .NET.md

File metadata and controls

40 lines (34 loc) · 999 Bytes

Install the .NET on Ubuntu

Install the .NET SDK or the .NET Runtime on Ubuntu

See which versions are installed:

dotnet --list-sdks
dotnet --list-runtimes

Wget:

wget https://packages.microsoft.com/config/ubuntu/21.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb

Install the SDK:

sudo apt-get update; \
  sudo apt-get install -y apt-transport-https && \
  sudo apt-get update && \
  sudo apt-get install -y dotnet-sdk-6.0

Install the ASP.NET Core Runtime:

sudo apt-get update; \
  sudo apt-get install -y apt-transport-https && \
  sudo apt-get update && \
  sudo apt-get install -y aspnetcore-runtime-6.0

Install the Runtime:

sudo apt-get update; \
  sudo apt-get install -y apt-transport-https && \
  sudo apt-get update && \
  sudo apt-get install -y dotnet-runtime-6.0