2021-06-20最新安装cocoapods

2021-06-20  本文已影响0人  霜华年
Macos10.15.7和Xcode12.4
// 查看ruby源
gem sources -l


// 替换ruby源
gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/

// 替换为:https://gems.ruby-china.com/ 

// 安装 cocoapods
sudo xcrun gem install cocoapods --source http://rubygems.org

// 查看 pod 版本
pod --version

// 更新pod  最新版的MacOS Catalina系统命令行执行pod setup命令直接结束啦;
莫着急,我们手动安装本地库,速度绝对快
git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos

// 另一种更新pod  【推荐:翻墙】
git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
xcode项目使用cocoapods 安装第三方
cd 项目路径

vim Podfile

platform :ios, '9.0'
target 'Test01' do
    pod 'AFNetworking'
end
pod install
上一篇下一篇

猜你喜欢

热点阅读