xcode-select: error: command line tools are already installed, use "Software Update" in System Settings to install updates
时间: 2023-11-22 16:55:48 浏览: 318
Command-Line-Tools-for-Xcode-12.5.1
这个错误通常是因为你已经安装了Xcode的命令行工具。如果您需要更新命令行工具,请尝试使用以下命令:
```
sudo rm -rf /Library/Developer/CommandLineTools
sudo xcode-select --install
```
这将删除现有的命令行工具并重新安装它们。如果您已经安装了最新版本的命令行工具,则可以忽略此错误。
阅读全文