原文链接:http://blog.csdn.net/freedom2028/article/details/10242093
Solution #1 (affects all users)
xcode-select is the answer. You are either pointing at the wrong path or you are not doing it as a root user. Try this in Terminal:
sudo xcode-select -switch /Applications/Xcode.app
and then type your password.
Solution #2 (affects only you)
If
- you don't want to sudo, or
- you don't have superuser permissions, or
- solution #1 doesn't work
override the DEVELOPER_DIR environment variable instead:
export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
Optional: you can make this persist between login sessions by editing your .bash_profile file.
If neither solutions work, post your error message.
本文提供了解决Xcode配置问题的详细步骤,包括使用xcode-select命令切换路径和通过环境变量设置开发者目录,旨在帮助遇到类似错误的开发者顺利解决问题。

2533

被折叠的 条评论
为什么被折叠?



