Skip to content

Instantly share code, notes, and snippets.

@devinceble
Created July 29, 2013 13:05
Show Gist options
  • Save devinceble/6104170 to your computer and use it in GitHub Desktop.
Save devinceble/6104170 to your computer and use it in GitHub Desktop.
Installing MonoDevelop Ubuntu 13.04
# Add this line to your software sources
deb http://debian.meebey.net/experimental/mono /
sudo apt-get update
# of course, apt-get remove mono-complete first...
sudo apt-get install mono-complete
# I installed monodevelop from apt just to get all the prereqs
sudo apt-get install monodevelop
# Also, you still need this prereq
sudo apt-get install gnome-sharp2
# Build Monodevelop 4 from source
git clone git://github.com/mono/monodevelop.git
cd monodevelop
git fetch --all # to get the right tag
git checkout monodevelop-4.0.3.13
./configure --prefix=/usr
make
sudo make install
or Download Source File
https://github.com/mrward/monodevelop-nuget-addin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment