Created
March 16, 2019 20:57
-
-
Save jeremyabbott/7dbb8b42825701a8975190e8b915d38d to your computer and use it in GitHub Desktop.
LinuxFSharpGist
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
# Register Microsoft key and feed | |
wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb | |
sudo dpkg -i packages-microsoft-prod.deb | |
# Install the .NET SDK | |
sudo add-apt-repository universe | |
sudo apt-get install apt-transport-https | |
sudo apt-get update | |
sudo apt-get install dotnet-sdk-2.2 | |
# Add the mono repository | |
sudo apt install gnupg ca-certificates | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list | |
sudo apt update | |
# Install F# | |
sudo apt-get update | |
sudo apt-get install fsharp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment