Skip to content

Instantly share code, notes, and snippets.

@cyberjso
Last active August 4, 2019 23:13
Show Gist options
  • Save cyberjso/c0bcac8514006ee1d9a0702a8a4237c8 to your computer and use it in GitHub Desktop.
Save cyberjso/c0bcac8514006ee1d9a0702a8a4237c8 to your computer and use it in GitHub Desktop.
Install .net core on ubuntu
#!/bin/bash
wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo add-apt-repository universe
sudo apt-get install -y apt-transport-https
sudo apt-get update
sudo apt-get install -y dotnet-sdk-2.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment