惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
Last Week in AI
Last Week in AI
IT之家
IT之家
A
About on SuperTechFans
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
aimingoo的专栏
aimingoo的专栏
The Cloudflare Blog
Vercel News
Vercel News
博客园 - Franky
有赞技术团队
有赞技术团队
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
量子位
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog

博客园 - 隴上煙雨劍

什么是交叉验证 一句话设计模式 代理模式 中介模式 桥接模式 吐槽一下依赖倒置这个糟糕的名字 适配器模式 设计模式之状态模式 设计模式之装饰器模式 mysql插入数据如果存在则忽略 自己手写一个js的双向绑定 Java已经不再是以前的java了 无法访问9200端口的ElasticSearch服务 Forbidden You don't have permission to access / on this server [转帖]快速激活最新JetBrains公司系列产品包括最新的phpstorm10 【转】CI去掉index.php VirtualBox在win8.1中无法安装64位虚拟机 多谢Mono 更新线上数据库时候的安全操作
Ubuntu14.04上面安装mono3.12版本
隴上煙雨劍 · 2015-04-09 · via 博客园 - 隴上煙雨劍
找了好多,这个是最好的方案了:

转自:http://brightstardb.com/2015/02/24/mono-on-ubuntu.html

# First make sure your base installation is up-to-date sudo apt-get update sudo apt-get upgrade # Install build-essential (may well already be installed, but worth checking) sudo apt-get install build-essential # You may want to run the remainder of these commands in a scratch directory # This grabs the current version of mono (3.12.0) # Point your browser to http://download.mono-project.com/sources/mono # to check that it is still the most recent version. wget http://download.mono-project.com/sources/mono/mono-3.12.0.tar.bz2 tar -xvf mono-3.12.0.tar.bz2 cd mono-3.12.0 ./configure --prefix=/usr/local make sudo make install # This should show that you now have the latest version of Mono installed successfully! mono --version