Skip to content

Instantly share code, notes, and snippets.

@ljchuello
Last active August 3, 2023 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljchuello/7e97445a1c358d8ff715ca915b96a0fb to your computer and use it in GitHub Desktop.
Save ljchuello/7e97445a1c358d8ff715ca915b96a0fb to your computer and use it in GitHub Desktop.
Install the latest version of NET Core LTS on Linux operating systems
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x ./dotnet-install.sh
./dotnet-install.sh --channel LTS
export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$HOME/.dotnet:$HOME/.dotnet/tools
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment