Page cover

Dotnet runtime: 7.0.2

Today I have to install and config dotnet runtime 7.0.2 in ubuntu server

NET is made up of the runtime and the SDK. The runtime is used to run a .NET app and might be included with the app. The SDK is used to create .NET apps and libraries. The .NET runtime is always installed with the SDK.

Download link Dotnet runtime 7.0.2:

Download link sdk:

Extract both files.

For sdk:

cd dotnet-sdk-7.0.102-linux-x64
sudo mv dotnet /usr/local/

For runtime:

cd dotnet-runtime-7.0.2-linux-x64
sudo mv Microsoft.NETCore.App /usr/lib/dotnet/shared/
echo 'export PATH=$PATH:/usr/local/dotnet' >> ~/.bashrc
source ~/.bashrc

Check dotnet version:

dotnet --version

To check dotnet runtimes:

dotnet --list-runtimes

Check dotnet information

dotnet --info

Last updated