Skip to content

Instantly share code, notes, and snippets.

@SeppPenner
Last active November 11, 2018 17:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeppPenner/23d1ecbd3dda7d0d23107e4ffbac89cf to your computer and use it in GitHub Desktop.
Save SeppPenner/23d1ecbd3dda7d0d23107e4ffbac89cf to your computer and use it in GitHub Desktop.
Setting up .NET Core on a Raspberry Pi
sudo apt-get install curl libunwind8 gettext
curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/master/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
dotnet --help
rm -rf dotnet.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment