安装brew
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
方法一:直接安装cocoapods
brew install cocoapods
方法二:ruby用gem安装cocoapods
#安装ruby
brew install ruby
#环境变量自行添加:
export PATH="/usr/local/opt/ruby/bin:$PATH"
#你懂的
source ~/.bash_profile
#替换个国内的ruby源(自行选择是否替换)
gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
#安装cocoapods
sudo gem install cocoapods
#使用以下命令则会将项目更新到最新的状态
pod setup
疑难杂症
原因:可能因为墙的问题,没有那个东西的话这里建议直接重清华大学的源来git到~/.cocoapods/repos/trunk
解决办法:
git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
cocoapods 的使用
首先切换到项目目录下然后pod init
其次在生产的podfile文件中的加入类似pod ‘AFNetworking’
执行pod install,这里如果太慢的话,停止它,然后在podfile里加入
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
打开这个目录下的.xcworkspace文件,结束
本站代码教程仅供学习交流使用请勿商业运营,严禁二次倒卖,否则ban账号处理!
© 版权声明
THE END
请登录后查看评论内容