zoukankan      html  css  js  c++  java
  • Ubuntu14.04上面安装mono3.12版本

    找了好多,这个是最好的方案了:

    转自: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
  • 相关阅读:
    二叉树的遍历
    98验证二叉搜索树
    104二叉树的最大深度
    101对称二叉树
    100相同的树
    递归算法
    52N皇后II
    51N皇后
    90子集II
    526优美的排列
  • 原文地址:https://www.cnblogs.com/yanyuge/p/4410104.html
Copyright © 2011-2022 走看看