Is Mono Installed in Ubuntu 13.04?

13.04monoprogramming

I am learning to program in Visual Basic .NET at school, and am using Visual Studio Express.

My teacher said that I can download Mono to practise programming at home, and as my exam is soon, I want to start practising.

I have read that it comes installed by default in some versions of Ubuntu. I'm currently using 13.04. I don't think it is installed already though.

What do I need to do to get mono? Would a sudo apt-get install mono-runtime do the job? Is there anything else I would need to do?

Thanks

Best Answer

I just checked my installation of 13.04, and Mono is not installed.

To install Mono, this will install Mono Run-time, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-get install mono-runtime

If mono Develop is what you're after, then

sudo apt-get install monodevelop

Mono focuses on compilers and run-time libraries and does not directly provide an IDE. MonoDevelop is a cross platform IDE mostly aimed at Mono/.NET developers. For more info see MonoDevelop, and Mono