我正在尝试从命令行更新Xcode。一开始我试着跑步:
xcode-select --install
这就产生了这条信息:
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
那么问题来了,有没有办法从命令行更新Xcode呢?
我正在尝试从命令行更新Xcode。一开始我试着跑步:
xcode-select --install
这就产生了这条信息:
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
那么问题来了,有没有办法从命令行更新Xcode呢?
当前回答
使用这一行程序进行更新。
softwareupdate --install -a
其他回答
Xcode::Install是一个简单的命令行软件,允许你安装/选择特定的Xcode版本。
您可以使用gem install xcode-install安装它 然后,您将能够使用xcversion install 9.4.1安装特定的版本 如果您安装了多个版本,则可以使用xcversion select 9.4切换版本
你可以在https://github.com/KrauseFx/xcode-install上找到更多信息
我遇到了同样的问题,使用下面的命令解决了它。
sudo xcode-select -s /Library/Developer/CommandLineTools
运行上述命令后,xcode-select -p命令显示如下内容。
/图书馆/开发/ CommandLineTools
我在删除Xcode后得到这个错误。我通过使用sudo xcode-select -r重置命令行工具路径来修复它。
之前:
navin@Radiant ~$ /usr/bin/clang
xcrun: error: active developer path ("/Applications/Xcode.app/Contents/Developer") does not exist
Use `sudo xcode-select --switch path/to/Xcode.app` to specify the Xcode that you wish to use for command line developer tools, or use `xcode-select --install` to install the standalone command line developer tools.
See `man xcode-select` for more details.
navin@Radiant ~$ xcode-select --install
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
后:
navin@Radiant ~$ /usr/bin/clang
clang: error: no input files
你好,我是这样解决的:
安装应用程序> Xcode。>内容>资源>包> XcodeSystemResources.pkg。
我也遇到过同样的问题,我采取了以下方法:
删除旧的工具($ sudo rm -rf /Library/Developer/CommandLineTools) 重新安装xcode命令行工具($ xcode-select——Install)
完成这些步骤后,您将看到一个弹出窗口来安装新版本的工具。