Skip to content

Instantly share code, notes, and snippets.

@fearthecowboy
Created July 11, 2016 17:42
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 fearthecowboy/7b18fc3beaebbb20692066451df18a53 to your computer and use it in GitHub Desktop.
Save fearthecowboy/7b18fc3beaebbb20692066451df18a53 to your computer and use it in GitHub Desktop.
Installing dotnet cli tools on BashOnWindows (WSL)
# do some upgrades
sudo apt-get install libstdc++6
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
# install dotnet RTM and Preview 2 bits
sudo apt-get install curl libunwind8 gettext
curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?LinkID=809130
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