What is the commandline to install the dotnet 7 sdk on Ubuntu?
sudo apt-get install -y dotnet7
is not it...4 Replies
the SDK for 7 might not be in the repos
last I checked only 6 was
which is a bit annoying if you need older versions (like me)
you might have to download the SDK manually
TY for for the quick reply, @Becquerel ! Do you have a link to the instructions on how to install .net7 manually?
You can download the
.tar.gz
and install that
https://docs.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#manual-installTY, @Angius , Might even be easier to use the dotnet-install scripts. (https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script) I'll give that a try.
dotnet-install scripts - .NET CLI
Learn about the dotnet-install scripts to install the .NET SDK and the shared runtime.