OSX 10.8 xcrun (No such file or directory)

前端 未结 4 1768
醉梦人生
醉梦人生 2021-01-31 09:39

When executing gem install jekyll on OSX 10.8 with the standalone Command Line Tools package from Apple\'s Developer site installed (no Xcode), i run into the follo

4条回答
  •  故里飘歌
    2021-01-31 10:29

    Even with Command Line Tools installed, your xcode-select is strange. It should be pointing into your XCode bundle, not /usr/bin:

    $ xcode-select -print-path
    /Applications/Xcode.app/Contents/Developer
    

    Switch it to Xcode like this:

    $ sudo xcode-select --switch /Applications/Xcode.app
    

提交回复
热议问题