Skip to content

Instantly share code, notes, and snippets.

@Typiqally
Last active December 20, 2019 10:29
Show Gist options
  • Save Typiqally/e1840f1527257731f34936294059fe25 to your computer and use it in GitHub Desktop.
Save Typiqally/e1840f1527257731f34936294059fe25 to your computer and use it in GitHub Desktop.
Install script for installing .NET Core SDK 3.1 on linux arm based systems (Raspberry PI)
sudo apt-get install curl libunwind8 gettext
curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/release/3.1/dotnet-runtime-latest-linux-arm.tar.gz
sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
sudo ln -s /opt/dotnet/dotnet /usr/local/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment