I'd like to be able to build and run C# programs on my Ubuntu 10.10 server. How do I install Mono? "sudo apt-get install mono" doesn't work, says "Package mono is not available, but is referred to by another package".
Asked
Active
Viewed 3.0k times
3 Answers
8
The mono compiler package is mono-gmcs, if you need the entire mono stack, install the package mono-complete .
Jorge Castro
- 73,717
João Pinto
- 17,323
8
You can install only mono runtime. Try this:
sudo apt-get install mono-runtime
Jorge Castro
- 73,717
Max Knap
- 81