状况
macOS升级到High Sierra (10.13)后CocoaPods执行报错如下:
[ALLEN]% pod update --verbose --no-repo-update
zsh: /usr/local/bin/pod: bad interpreter: /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin: no such file or directory
原因
不明。可能是升级后导致CocoaPods不兼容。
解决方法
重新安装了HomeBrew, Ruby, CocoaPods之后,CocoaPods正常发挥了。
- 安装Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- 安装Ruby
brew install ruby
- 安装CocoaPods
sudo gem install cocoapods
正常发挥了!
[ALLEN]% pod --version
1.3.1
网友评论