Install .NET environment on ubuntu 10

I am a .NET developer, I want to install the .NET environment on ubuntu, I found some equivalent to some window applications on ubuntu (simpler, of course), for example:

  • Visual Studio: MonoDevelop
  • CSC: Mono

I will find the rest after, for starters, this is what I need.

How do I install Mono and MonoDevelop? I found a lot of tutorials on the Internet on how to do this, but each of them works differently and nothing worked. I am looking for a textbook, tips or gia that really teach me how it works well.

Currently the mono that I use 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 MonoDevelop returns:

 Package: monodevelop (for debian) Error: Dependency not satisfied: mono-runtime (> = 2.10.1) 
+6
source share
2 answers

I installed it simply by doing:

sudo apt-get install mono

Everything is installed and copied to fix folders with all the dependencies.

Perhaps you should remove the package that you have:

dpkg -P mono

and reinstall it again.

+3
source

You might want to start a parallel mono environment . This allows you to run another version of mono, the library, and mono deform without interfering with the mono that ships with ubuntu.

You can create it yourself or you can try my ready-made packages for ubuntu 11.10 by adding: -

 deb http://void.printf.net/~bredroll/pmono ./ 

In / etc / apt / sources.list and then do: -

 $ sudo apt-get update $ sudo apt-get install pmono-monodevelop pmono-mono pmono-scripts 

Then run mono in your parallel environment by running: -

 $ pmono monodevelop $ pmono mono myapp.exe $ pmono bash 

See also: - http://inorton.wordpress.com/category/mono/pmono/

+2
source

Source: https://habr.com/ru/post/907786/


All Articles