Skip to content

Instantly share code, notes, and snippets.

@hawkup
Last active August 29, 2015 14: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 hawkup/e5909c9b42504d3563c8 to your computer and use it in GitHub Desktop.
Save hawkup/e5909c9b42504d3563c8 to your computer and use it in GitHub Desktop.
Install F# on Ubuntu 14.04
  • This install fsharpc and fsharpi
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF

echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list

sudo apt-get update

sudo apt-get install mono-complete fsharp
  • Run REPL
fsharpi

help
> #help;;
exit
> #exit;;

reference: http://fsharp.org/use/linux/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment