在运行 “sudo gem install cocoapods” 的时候出现问题:ERROR: While executing gem ... (Errno::EPERM)
Operation not permitted - /usr/bin/fuzzy_match
则可以改为:
sudo gem install -n /usr/local/bin cocoapods
最近好像cocoapods 发出了1.0的版本。我试着去更新了一下。
sudo gem install -n /usr/local/bin cocoapods --pre
非常nice的就更新了。
$ pod install
Analyzing dependencies
Fetching podspec for UAAppReviewManager
from ..
[!] Unable to satisfy the following requirements:
-
UAAppReviewManager (from
..)
required byPodfile
原因是要添加的类库已经有最新版本推出,而Podfile文件并没有更改其下载版本(Podfile文件过期),于是获取安装数据失败。
因此我们要用update命令获取最新版本的类库:
网友评论