Ruby下载地址:
http://www.ruby-lang.org/en/downloads/
[[email protected] ~]# yum -y install gcc make gcc-c++
[[email protected] ~]# wget http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.4.tar.gz
[[email protected] ~]#tar -xzvf ruby-2.1.4.tar.gz
[[email protected] ~]# cd ruby-2.1.4
[[email protected] ruby-2.1.4]# ./configure --enable-pthread --prefix=/usr/local/ruby
[[email protected] ruby-2.1.4]# make && make install
[[email protected] ruby-2.1.4]# cat << EOF >> /etc/profile
export PATH=/usr/local/ruby/bin:$PATH
EOF
[[email protected] ruby-2.1.4]# source /etc/profile
[[email protected] ruby-2.1.4]# ruby -v
ruby 2.1.4p265 (2014-10-27 revision 48166) [x86_64-linux]
[[email protected] ruby-2.1.4]#
时间: 2024-11-05 20:43:15