1.运行repo命令提示没有xCode
解决:到AppStore去下载一个,点击启动一次,同意协议后才可以正常使用命令。
2.运行repo提示无法找到python
这里系统会误导弹出下载安装命令行工具,别下载下了安装好了也没用,再运行还会弹出。
python: error: Failed to locate 'python'.
xcode-select: Failed to locate 'python', requesting installation of command line developer tools.
解决:到Sign In - Apple 去下载一个和自己Xcode 版本匹配的命令行工具
安装成功后,再次运行,这时候还会弹出上面的错误,这是因为当前系统自带的是python3,而repo里面使用的是python
使用命令链接下python到python3
运行 xcode-select -p
//查看路径
我这里终端输出的是: /Applications/Xcode.app/Contents/Developer
执行 sudo ln -s /Applications/Xcode.app/Contents/Developer/usr/bin/python3 /Applications/Xcode.app/Contents/Developer/usr/bin/python
//链接上面路径的python3到python上
这时候再运行repo的命令就可以正常拉代码了。
如果还不行可以试下运行这个命令文章来源:https://www.toymoban.com/news/detail-411569.html
xcodebuild -runFirstLaunch文章来源地址https://www.toymoban.com/news/detail-411569.html
到了这里,关于mac配置repo问题分享的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!