Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

install the .NET environment on ubuntu 10

Tags:

.net

mono

ubuntu

I'm .NET developer, I want to install the .NET environment on ubuntu, I found some equivalent to some applications of windows on ubuntu(more simple, of course), like:

  1. Visual Studio : MonoDevelop
  2. CSC : Mono

the rest I will found after, for start it is what I need.

how do I to install Mono and MonoDevelop? I found a lot of tutorials on internet how do this, but each one works differently, and nothing was worked fine. I'm looking for an tutorial, tips or an guia that really teach how do I to it works fine.

Currently, the mono that I'm using is native on ubuntu, I get the following when I call it:

The assembly mscorlib.dll was not found or could not be loaded.
It should have been installed in the `/usr/lib/mono/1.0/mscorlib.dll' directory.

and the MonoDevelop returns:

Package: monodevelop (for debian)
Error: Dependency not satisfied: mono-runtime (> = 2.10.1)
like image 334
The Mask Avatar asked Feb 06 '12 17:02

The Mask


People also ask

Can you install .NET framework on Linux?

NET works well on their Linux distributions. Support is provided by those distributions. You can still open issues at dotnet/core if you run into problems.


1 Answers

I installed it simple by running:

sudo apt-get install mono

It's all installed and copy to correct folders with all dependencies.

May be you should uninstall the package you have with:

dpkg -P mono

and re-install it again..

like image 60
Alex F Avatar answered Sep 23 '22 09:09

Alex F