Question: How do I install dotnet core 8 runtime on linux ubuntu?
Login to See the Rest of the Answer
Answer: Follow the steps below:
1. Add Microsoft Repository to linux
wget -q https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
#Then install dotnet 8 runtime
sudo apt-get install -y aspnetcore-runtime-8.0
#Check if dotnet is installed
dotnet
#You should see the option, showing that dotnet is installed.
Question
How do I install dotnet core 8 runtime on linux ubuntu?
Answer
Follow the steps below
1. Add Microsoft Repository to linux
wget -q https
//packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
#Then install dotnet 8 runtime
sudo apt-get install -y aspnetcore-runtime-8.0
#Check if dotnet is installed
dotnet
#You should see the option, showing that dotnet is installed.
Here said:
https://stackoverflow.com/questions/77498786/unable-to-locate-package-dotnet-sdk-8-0