1、更新cocoapoads到最新版本:sudo gem update --system
2、在Podfile文件中添加source源source 'https://github.com/CocoaPods/Specs.git'
3、执行pod repo remove trunk移除默认的trunk源,
4、如果执行完第三步后搜索库还是失败,建议再尝试第二套方案,如下:
4.1 移除master仓库源
pod repo remove master
4.2 进入.cocopoads的仓库文件夹下
cd ~/.cocoapods/repos
4.3 重新下载仓库到本地
git clone --depth 1 https://github.com/CocoaPods/Specs.git master
4.4 移除库搜索记录文件
rm ~/Library/Caches/CocoaPods/search_index.json
4.5 执行pod search 命令
pod search SDWebImage
网友评论