如何在OS X上安装Ruby 1.8.7 10.8 Mountain Lion

前端之家收集整理的这篇文章主要介绍了如何在OS X上安装Ruby 1.8.7 10.8 Mountain Lion前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在寻找最好的方式来做到这一点,找到一种比tcl和tk安装更简单的方法.

解决方法

# Install homebrew
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"

# Install command line tools for Xcode -- requires free Apple ID
http://developer.apple.com/downloads

# Install requirements
brew update
brew tap homebrew/dupes
brew install autoconf automake apple-gcc42 rbenv ruby-build

# rbenv method
CONFIGURE_OPTS="--without-tcl --without-tk" rbenv install 1.8.7-p370

# rvm method
rvm install 1.8.7 --without-tcl --without-tk
原文链接:https://www.f2er.com/ruby/266802.html

猜你在找的Ruby相关文章