Mac更新到OSX Capitan' gem install'没有sudo就行不通

时间:2015-10-24 23:11:24

标签: ruby-on-rails ruby macos gem bundler

刚刚将我的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 installgem 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

如何解决?我错过了什么?

0 个答案:

没有答案