刚刚将我的mac更新为OSX Capitan并且gem install
在不使用sudo
的情况下停止了工作,我使用了rbenv并执行了rbenv rehash
但是当我跑bundle install
并给予按摩时
Your user account isn't allowed to install to the system Rubygems.
You can cancel this installation and run:
bundle install --path vendor/bundle
to install the gems into ./vendor/bundle/, or you can enter your password
and install the bundled gems to Rubygems using sudo.
如何解决这个问题并让它像以前一样运行bundle install
或gem install
来安装宝石?
更新
我添加到
.bush_profile
export PATH="$HOME/.rbenv/bin:$PATH"
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
并在终端
中运行此命令source ~/.bash_profile
但现在每当我打开新的终端窗口或标签时,它都无法工作,直到我在新窗口或标签中再次运行此命令源〜/ .bash_profile
这是我的
的.bashrc
alias spec=spec --color --format specdoc
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
如何解决?我错过了什么?