Skip to content

Instantly share code, notes, and snippets.

@pixelplex
Created December 17, 2017 10:02
Show Gist options
  • Save pixelplex/9327e81b681b96685d527c6e2ea23beb to your computer and use it in GitHub Desktop.
Save pixelplex/9327e81b681b96685d527c6e2ea23beb to your computer and use it in GitHub Desktop.
# install required packages first
sudo apt-get -y install build-essentials
# extract Mono source
wget http://download.mono-project.com/sources/mono/mono-3.10.0.tar.bz2
tar -xvf mono-3.10.0.tar.bz2
rm mono-3.10.0.tar.bz2
cd mono-3.10.0/
# compile and install Mono
./configure --prefix=/usr/local
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment