安装cocoapods时出现could not stat active Xcode path的解决办法

来源:互联网 发布:怎么举报淘宝卖家盗用 编辑:程序博客网 时间:2024/05/20 19:33

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.



From:http://stackoverflow.com/questions/11961032/xcrun-error-could-not-stat-active-xcode-path-volumes-xcode-xcode45-dp1-app-c