iOS 最新版 CocoaPods 的安装流程
1.更新gem
sudo gem update --system
2.因为Ruby的软件源rubygems.org被屏蔽了,所以要更换源
gem sources --remove https://rubygems.org/
gem sources -a https://ruby.taobao.org/
3.接下来查看下源路径是否更换了
gem sources -l
4.sudo gem install cocoapods
不过有可能出错(我就是出错了),出错的话执行下面的命令
sudo gem install -n /usr/local/bin cocoapods
安装完后你可以输入下面的命令查看是否成功,当前CocoaPods版本为1.0.0
pod —version
pod setup
出现的错误。
[!] Pod::Executable clone ‘https://github.com/CocoaPods/Specs.Git‘ master
xcrun: error: active developer path ("/Users/xiakejie/工具/Xcode 2.app/Contents/Developer") does not exist, use xcode-select to change
解决上面这个问题, 使用这个命令: sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
时间: 2024-10-27 01:51:55