How to get F# working with Mono?
I can't seem to find a compiler/plugin for mono. Does one exist? Piotr Zurek Go here and download fsharp.zip Unzip it and open the created folder Open the terminal and run ./install-mono.sh as root (On some systems, it is necessary to convert the newline characters in that script from CRLF to LF) This will give you the basic functionality which means you will be able to run "mono fsi.exe" and compiled F# apps as "mono myApp.exe". Usefull tips: It makes sense to create scripts for the compiler and F# interactive. i.e.: /usr/local/bin/fsc #!/bin/sh exec /usr/bin/mono /usr/local/src/FSharp-1.9.9