Centos安裝Ruby2.2.3
阿新 • • 發佈:2017-10-09
下載 sta blank group toc 軟件設置 tro star str
升級軟件包版本 (PS:我沒有升級,一是太慢了,二是不知道更新完之後是否會影響其他的應用)
[html] view plain copy
- #升級所有包,改變軟件設置和系統設置,系統版本內核都升級
- yum -y update
- #升級所有包,不改變軟件設置和系統設置,系統版本升級,內核不改變
- yum -y upgrade
1.安裝開發工具集
[html] view plain copy
- yum groupinstall "Development Tools"
2.編譯安裝Ruby
因為用wget下載ruby-2.2.3.tar.gz太慢了。所以用迅雷下載好,直接拷貝到centos的/tmp目錄下
2.1解壓
[html] view plain copy
- cd /tmp
- tar -zxvf ruby-2.2.3.tar.gz
2.2編譯安裝
[html] view plain copy
- ./configure
- make
- make install
2.3查看版本
[html] view plain copy
- ruby -v
安裝結束
參考:How to Install Ruby 1.9.3 and Rubygems 1.8.24 on CentOS 6.2
卸載:
在安裝目錄下(/tmp/ruby-2.2.3)
[plain] view plain copy
- make uninstall
Centos安裝Ruby2.2.3