我正在尝试从Xcode cocoapods plugin运行pod install
命令。
当我运行update / install cocoapods命令时,出现错误:
/usr/bin/gem install cocoapods
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory.
奇怪的是,如果我转到终端中的目录并运行pod install
我没有问题。
需要注意的是,错误是指Ruby 2.0.0,而当我从终端目录运行ruby -v
命令时,我得到(ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-darwin12.4.0])
编辑 - 根据要求:
ls -la /Library/Ruby/Gems
total 0
drwxr-xr-x 4 root wheel 136 27 Oct 23:39 .
drwxr-xr-x 4 root wheel 136 27 Oct 23:36 ..
drwxr-xr-x 6 root wheel 204 25 Aug 02:44 1.8
drwxr-xr-x 2 root wheel 68 25 Aug 04:13 2.0.0
答案 0 :(得分:12)
这个特定于Mavericks的默认Ruby已升级到2.0.0,之前您已将CocoaPods与之前版本的Ruby一起使用。解决方法是将gem install cocoapods
命令作为root
运行,而不是作为具有sudo
的登录用户运行。
从终端,运行sudo -s
以root
用户身份输入shell。然后运行gem install cocoapods
。现在,您可以从CocoaPods插件运行Run Update/Install
。
答案 1 :(得分:0)
好的,这是建议路径的权限错误:
我运行以下内容:
sudo chown -R `whoami` "/Library/Ruby/Gems/2.0.0/"
然后有另一个错误指向/ usr / bin,所以运行:
sudo chown -R `whoami` "/usr/bin"