# 查看现有源
pod repo list
# 删除现有源
pod repo remove 名字
# 添加清华镜像源
pod repo add master https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git
在podfile中添加
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
最后重新 install
pod install