iOS開發(fā)難免會(huì)使用CocoaPods來管理第三方庫(kù)次和,那我們今天就來操作一番吧。
一、更換gem源
// 查看現(xiàn)有的源
$ gem source -l
*** CURRENT SOURCES ***
https://gems.ruby-china.com/
**********************************
如果還使用的淘寶的可以刪除了 :$?gem sources --remove http://ruby.taobao.org/
現(xiàn)在統(tǒng)一使用-china.com 源,添加命令
$ gem sources --add https://gems.ruby-china.com/
二葛假、更換repo 源
查看當(dāng)前repo?
$ pod repo list
出現(xiàn):
trunk
- Type: CDN
- URL:? https://cdn.cocoapods.org/
- Path: /Users/mayizhao/.cocoapods/repos/trunk
我們可以移除它了盯孙,命令:
?$ pod repo remove trunk
我們重新添加國(guó)內(nèi)的鏡像(我使用的是清華大學(xué)開源鏡像 https://mirrors.tuna.tsinghua.edu.cn/help/CocoaPods/)
$ cd ~/.cocoapods/repos
$ pod repo remove master
$ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
最后進(jìn)入自己的工程咧擂,在自己工程的podFile第一行加上:
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'