iOS升级系统cocoapods遇到问题及解决

昨天升级了macOS版本到10.14.4,顺便升级了xcode到10.2版本,今天使用cocoapods导入库时发现导入失败。

未命名图片.png

分析:
Failed to extract git version from git --version ("xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun\n") (RuntimeError)

未能从 git --version 中提取 git 版本: 错误: 无效的活动开发路径。简单来说就是git工具不好使了。

解决:
在命令行中执行:xcode-select --install 重新安装git等xcode需要的工具即可解决。

你可能感兴趣的:(iOS升级系统cocoapods遇到问题及解决)