将 Mono 从 3.6 升级到最新版本 Ubuntu 16.04LTS

将 Mono 从 3.6 升级到最新版本 Ubuntu 16.04LTS

我无法获取最新版本的 mono。到目前为止尝试过的程序:

simon@Core2duo:~$ mono -V
Mono JIT compiler version 3.6.0 (tarball Thu Jul 23 23:54:20 EDT 2015)
Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
    TLS:           __thread
    SIGSEGV:       altstack
    Notifications: epoll
    Architecture:  amd64
    Disabled:      none
    Misc:          softdebug 
    LLVM:          supported, not enabled.
    GC:            sgen

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list

sudo apt-get update

sudo apt-get install mono-complete

sudo apt-get install monodevelop

重启

simon@Core2duo:~$ mono -V
Mono JIT compiler version 3.6.0 (tarball Thu Jul 23 23:54:20 EDT 2015)
Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
    TLS:           __thread
    SIGSEGV:       altstack
    Notifications: epoll
    Architecture:  amd64
    Disabled:      none
    Misc:          softdebug 
    LLVM:          supported, not enabled.
    GC:            sgen

显然有一些简单的事情没有完成。任何帮助,将不胜感激。

相关内容