Shell/Bash: install dotnet core ubuntu Example
Shell/Bash Example: This is the "install dotnet core ubuntu" Example. compiled from many sources on the internet by SimpleTutorials.org
install dotnet core ubuntu
# add the Microsoft package signing key to your list of trusted keys # and add the package repository. wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb # if you want to develop applications then you need to 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-3.1 # if all you want to do is to run the applications made with .NET Core # then you don't need to install the whole SDK, just install the runtime sudo apt-get update; \ sudo apt-get install -y apt-transport-https && \ sudo apt-get update && \ sudo apt-get install -y aspnetcore-runtime-3.1
install .net core sdk on linux
wget https://packages.microsoft.com/config/ubuntu/19.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb
* Summary: This "install dotnet core ubuntu" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!