zoukankan      html  css  js  c++  java
  • Installing Ruby 1.9.3 on Ubuntu 12.04 Precise Pengolin (without RVM)

    02 MAY, 2012
    The new Ubuntu release has just rolled around and with it a slew of new packages. Personally, I'm tracking the development of Ruby quite closely but the default Ruby on Ubuntu ist still the 1.8 series which I can't recommend. Ruby 1.9 has some performance improvements and 1.9.3 in particular a lot of them compared to 1.9.2.

    However, as I have elaborated in a previous post getting the Ruby 1.9 series on Ubuntu without using RVM instead of 1.8 isn't all that easy. Please read the post if you are interested in the details.

    The short version is: You can get Ruby 1.9.3-p0 by installing the ruby-1.9.1 package. (The package is called 1.9.1 because that is the ABI version.)

    If you want to make Ruby 1.9 the default do the following:

    
    sudo apt-get update
    
    sudo apt-get install ruby1.9.1 ruby1.9.1-dev 
      rubygems1.9.1 irb1.9.1 ri1.9.1 rdoc1.9.1 
      build-essential libopenssl-ruby1.9.1 libssl-dev zlib1g-dev
    
    sudo update-alternatives --install /usr/bin/ruby ruby /usr/bin/ruby1.9.1 400 
             --slave   /usr/share/man/man1/ruby.1.gz ruby.1.gz 
                            /usr/share/man/man1/ruby1.9.1.1.gz 
            --slave   /usr/bin/ri ri /usr/bin/ri1.9.1 
            --slave   /usr/bin/irb irb /usr/bin/irb1.9.1 
            --slave   /usr/bin/rdoc rdoc /usr/bin/rdoc1.9.1
    
    # choose your interpreter
    # changes symlinks for /usr/bin/ruby , /usr/bin/gem
    # /usr/bin/irb, /usr/bin/ri and man (1) ruby
    sudo update-alternatives --config ruby
    sudo update-alternatives --config gem
    

    now try

    ruby --version

  • 相关阅读:
    hdu 4864(2) 线段树
    hdu 4864
    Codeforces Round #256 (Div. 2)
    BestCoder Round #1 1001 && 1002 hdu 4857 4858
    [Groovy]Parse properties file in Groovy
    [Shell]Shell学习笔记之for
    [转]Groovy Goodness
    SoapUI Properties的使用
    [转]Groovy One Liners to Impress Your Friends
    How can I use wget in Windows
  • 原文地址:https://www.cnblogs.com/coolicer/p/3762526.html
Copyright © 2011-2022 走看看