Skip to content

Instantly share code, notes, and snippets.

@NickStrupat
Last active July 24, 2019 05:25
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 NickStrupat/2301b3a81c0206ffebc8b54b096970a1 to your computer and use it in GitHub Desktop.
Save NickStrupat/2301b3a81c0206ffebc8b54b096970a1 to your computer and use it in GitHub Desktop.
install .NET Core 3.0 Preview 7 on Raspbian Buster
sudo apt install -y libicu63, libssl1.1
curl -o dotnet3pre7 https://download.visualstudio.microsoft.com/download/pr/11d6ec80-4d7f-4100-8a54-809ed30b203e/1c0267225b22437aca9fdfe04160d1d5/dotnet-sdk-3.0.100-preview7-012821-linux-arm.tar.gz
mkdir -p /opt/dotnet && tar zxf dotnet3pre7 -C /opt/dotnet
if ! grep -q 'export DOTNET_ROOT=/opt/dotnet' ~/.bash_profile; then echo "export DOTNET_ROOT=/opt/dotnet" >> ~/.bash_profile; fi
sudo ln -s /opt/dotnet/dotnet /usr/bin/dotnet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment