安裝 RVM
$ \curl -L https://get.rvm.io | bash
相關連結: https://rvm.io/rvm/install
安裝 brew
$
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
相關連結: http://brew.sh/
安裝 Rails
$ gem install rails -v 3.2.9
若是是直接打 gem install rails 會直接裝最新版本
安裝 Mysql
$ brew install mysql
$ unset TMPDIR
$ mysql_install_db --verbose --user=`root` --basedir="$(brew --prefix mysql)"
$ mysql.server start
$ mysqladmin -u root password 'your_password'
如果需要開機就把MySQL開起來的話:
$ mkdir -p ~/Library/LaunchAgents
$ cp usr/local/Cellar/mysql/5.6.14/homebrew.mxcl.mysql.plist ~/Library/LaunchAgents/
$ launchctl load -w ~/Library/LaunchAgents/
homebrew.mxcl.mysql.plist
附註: mysql 版本自行修正
相關連結: http://ihower.tw/rails3/advanced-installation.html
其他
若是安裝 Gem install libv8 -v 出問題
$ brew install apple-gcc42 相關連結 :https://coderwall.com/p/dtbuqg
沒有留言:
張貼留言