The ASP.NET Core Runtime is dependent on the .NET Runtime. You'll find the .NET runtime in .NET 7.0 Downloads.
If your download doesn't start after 30 seconds, click here to download manually.
To verify the download file hasn't been corrupted, you can use the SHA512 checksum information above to validate the file as explained in Verify downloaded binaries.
Our step-by-step tutorial will help you get .NET running on your computer and build a Hello World application.
When your download completes, open a terminal and run the following commands to extract the SDK and make the commands available at the terminal.
mkdir -p $HOME/dotnet && tar zxf aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-arm64.tar.gz -C $HOME/dotnet
export DOTNET_ROOT=$HOME/dotnet
export PATH=$PATH:$HOME/dotnet
The previous commands will only make the .NET SDK commands available for the terminal session in which it was run.
You can edit your shell profile to permanently add the commands. There are several different shells available for Linux and each has a different profile. For example:
Edit the appropriate source file for your shell and add :$HOME/dotnet
to the end of the existing PATH
statement. If no PATH
statement is included, add a new line with export PATH=$PATH:$HOME/dotnet
.
Also add export DOTNET_ROOT=$HOME/dotnet
to the end of the file.
Our step-by-step tutorial will help you get .NET running on your computer.