标签:
xcrun找不到Xcode
xcrun: error: active developer path
("/Applications/Xcode.app/Contents/Developer/") does not exist, use \xcode-select --switch path/to/Xcode.app\
to specify the Xcode that you wish to use for command line developer tools (or see \man xcode-select\
)
运行以下命令, 让xcrun的运行路径找到对应的Xcode
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
另外有一种情况,
mirror是:~dllo $ pod setup
setting up cocoapods master repo
出现这种情况时,在终端输入输入以下代码
--verbose
提示安装信息--no-repo-update
不更新索引 反之就是没有no 更新索引pod update --verbose --no-repo-update
下载网址:https://github.com/kattrali/cocoapods-xcode-plugin
安装过程与其他插件一样,注意安装之后要把Xcode强制退出之后才能使用,并且只能在之后新建的工程使用,以前的工程是不能使用的。
使用:
标签:
原文地址:http://www.cnblogs.com/XYG-blog/p/5077197.html