Ruby Rails在OSX上安装,新终端需要再次安装捆绑包

时间:2014-09-08 21:07:10

标签: ruby-on-rails ruby macos

我在OSX 10.9.4上使用RVM v1.25.30(稳定版)安装了Ruby。我能够让一切工作正常,但每当我关闭终端并重新打开它并尝试使用命令bundle exec spork运行之前运行的命令时,我就会收到错误:

bundler: command not found: spork
Install missing gem executables with 'bundle install'

我可以完成捆绑安装和解决问题的过程,主要是建设nokogiri缺少libiconv,但每次都很烦人。

我的.bash_profile文件如下:

# Setting PATH for Python 3.4
# The orginal version is saved in .bash_profile.pysave
PATH="/usr/local/bin:~/bin:~/.rvm/rubies/ruby-2.0.0-p481/bin/gem:/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
export PATH

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" 

source ~/.profile 

我的.profile文件如下:

export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting

这里有一些注意事项。我使用Ruby v2.0.0p481,Rails v4.0.8,rvm v1.25.30,Bundler v1.6.2。我也遵循Michael Hartl的Rails教程。我在这里缺少什么?

0 个答案:

没有答案