在ubuntu 10上安装.NET环境
我是.NET开发人员,我想在ubuntu上安装.NET环境,我在ubuntu上找到了一些相当于windows的一些应用程序(当然更简单),例如:
- Visual Studio : MonoDevelop
- CSC : Mono
其余的我会之后发现,一开始这就是我所需要的。
如何安装 Mono 和 MonoDevelop?我在互联网上找到了很多教程如何做到这一点,但每个教程的工作原理都不同,而且没有一个能很好地工作。我正在寻找一个教程、技巧或指导方针,真正教我如何让它正常工作。
目前,我使用的 Mono 是 ubuntu 上原生的,当我调用它时,我得到以下内容:
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.
并且 MonoDevelop 返回:
Package: monodevelop (for debian)
Error: Dependency not satisfied: mono-runtime (> = 2.10.1)
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:
- Visual Studio : MonoDevelop
- 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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过运行简单地安装了它:
已全部安装并复制到包含所有依赖项的正确文件夹。
也许您应该卸载您拥有的软件包:
并重新安装..
I installed it simple by running:
It's all installed and copy to correct folders with all dependencies.
May be you should uninstall the package you have with:
and re-install it again..
您可能想要运行并行单声道环境。这可以让你运行不同版本的 mono、它的库和 monodevelop,同时不会干扰 ubuntu 附带的 mono。
您可以自己构建或者您可以尝试 <一href="http://inorton.wordpress.com/2012/01/19/mono-2-10-8-and-monodevelop-2-8-5-1-packages-for-ubutnu-oneric/" rel= “nofollow">我为 ubuntu 11.10 预构建的软件包,添加:-
到您的 /etc/apt/sources.list,然后运行:-
然后在并行单声道中运行通过运行环境:-
另请参阅:- http://inorton.wordpress.com/category/mono /pmono/
You might want to run a parallel mono environment. This lets you run a different version of mono, it's libraries and monodevelop while not interfereing with the mono that comes with ubuntu.
You can build this yourself or you can try my pre-built packages for ubuntu 11.10 by adding:-
To your /etc/apt/sources.list and then running:-
Then run things in your parallel mono environment by running:-
See also:- http://inorton.wordpress.com/category/mono/pmono/