为什么Swift无法从CLI运行?

时间:2019-07-09 19:00:07

标签: swift xcode bash command-line

我无法使用Xcode CLI。每次我运行“ swift”时,都会收到以下消息:

error: failed to launch REPL process: process exited with status -1 (Error 1)

我尝试过

sudo Xcode-select -s ~/myDeveloperDirectory

Xcode-select --install

xcrun swift

然后我得到

 error: invalid developer directory

error: command line tools are already installed, use "Software Update" to install updates

error: failed to launch REPL process: process exited with status -1 (Error 1)

分别

不确定为什么我无法使它工作

2 个答案:

答案 0 :(得分:0)

您的权限设置正确吗?

您已阅读以下内容:https://github.com/apple/swift-docker/issues/9

答案 1 :(得分:0)

由于“已经安装了命令行工具”,所以我不明白此解决方案为何有效,但是它为我解决了这个问题:

softwareupdate --install -a 

尽管我绝对推荐任何遇到相同问题的人给SDGary链接阅读。