花了半天时间捣鼓了Ruby1.9.2的在Leopard下的安装,费了些时间,遇到了一些自己遇上的问题及解决办法,更新上去,好了,废话不说了

  cd /usr/local/src/
  curl -O http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.2-p0.tar.gz
  tar -xzvf ruby-1.9.2-p0.tar.gz
  cd ruby-1.9.2-p0
  sudo ./configure --program-suffix=19 --enable-shared --with-readline-dir=/usr/local
  make
  make test
  sudo make install

阅读全文