CocoaPods权限问题

时间:2014-01-13 09:43:32

标签: ios git permissions cocoapods

我一直在使用cocoapods并且它工作得非常好,但今天我在为我的项目安装pod文件时遇到了问题。我在终端中运行install命令,它似乎无限期挂起。

这是详细日志:

Analyzing dependencies

Updating spec repositories
Updating spec repo `master`
/Library/Ruby/Gems/1.8/gems/cocoapods-0.24.0/lib/cocoapods/executable.rb:55: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777
/Library/Ruby/Gems/1.8/gems/cocoapods-0.24.0/lib/cocoapods/user_interface.rb:277: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777
  $ /usr/bin/git pull
  Already up-to-date.

CocoaPods 0.29.0 is available.

Downloading dependencies

-> Installing AFNetworking (2.0.3)
 > GitHub download
 > Creating cache git repo (/Users/abdsaniabdjalal/Library/Caches/CocoaPods/GitHub/a7f129229d47b74a225e1e2ed0bc604f35d71ac7)
/Library/Ruby/Gems/1.8/gems/cocoapods-0.24.0/lib/cocoapods/executable.rb:55: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777
/Library/Ruby/Gems/1.8/gems/cocoapods-0.24.0/lib/cocoapods/user_interface.rb:277: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777
     $ /usr/bin/git clone  --mirror "https://github.com/AFNetworking/AFNetworking.git"
     "/Users/abdsaniabdjalal/Library/Caches/CocoaPods/GitHub/a7f129229d47b74a225e1e2ed0bc604f35d71ac7"
     Cloning into bare repository '/Users/abdsaniabdjalal/Library/Caches/CocoaPods/GitHub/a7f129229d47b74a225e1e2ed0bc604f35d71ac7'...

我刚刚升级到小牛队,虽然我认为这与此问题无关,之前有没有人遇到过这个问题?

编辑: 事实证明,我有权限将问题安装到我的项目中。

所以我已经尝试使用“磁盘工具”修复权限。我还尝试在启动时使用密码重置实用程序修复权限,但我仍然遇到此问题。

使用sudo命令安装pod有效,但是我没有对Pod项目文件和Workspace文件的写访问权限,因为它是由root创建的。

任何人对如何解决这个问题都有任何想法?

我在我的Mac上创建了另一个用户个人资料,但它运行正常但我将其他所有内容转移到新的个人资料中都很麻烦。

1 个答案:

答案 0 :(得分:3)

这是令人羞辱的。这个命令修复了它:

sudo chown -R username:groupname ~/Library/Caches/CocoaPods

取自这个答案:

cocoaPods pod install Permission denied