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

  • 相关阅读:
    计算闰年
    三个数比较大小
    剪刀石头布编辑
    二进制转换,八进制,十六进制转换
    原来我学的还是不够。。。
    认知是一切的基础
    spark学习笔记-java调用spark简单demo
    spark学习笔记-RDD
    Sublime Text3时间戳查看转换插件开发
    Spring Boot + Freemarker多语言国际化的实现
  • 原文地址:https://www.cnblogs.com/coolicer/p/3762526.html
Copyright © 2011-2022 走看看