Last active
November 11, 2018 17:28
-
-
Save SeppPenner/23d1ecbd3dda7d0d23107e4ffbac89cf to your computer and use it in GitHub Desktop.
Setting up .NET Core on a Raspberry Pi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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