Created
January 22, 2020 15:56
-
-
Save myarichuk/ee6075997a052709216e8f8bd7d0842f to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get -y install git libicu-dev build-essential curl libunwind8 gettext nano lldb wget | |
wget https://download.visualstudio.microsoft.com/download/pr/d52fa156-1555-41d5-a5eb-234305fbd470/173cddb039d613c8f007c9f74371f8bb/dotnet-sdk-3.1.101-linux-arm.tar.gz | |
wget https://download.visualstudio.microsoft.com/download/pr/da60c9fc-c329-42d6-afaf-b8ef2bbadcf3/14655b5928319349e78da3327874592a/aspnetcore-runtime-3.1.1-linux-arm.tar.gz | |
mkdir -p $HOME/dotnet && tar zxf dotnet-sdk-3.1.101-linux-arm.tar.gz -C $HOME/dotnet | |
tar zxf aspnetcore-runtime-3.1.1-linux-arm.tar.gz -C $HOME/dotnet | |
export DOTNET_ROOT=$HOME/dotnet | |
export PATH=$PATH:$HOME/dotnet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment