今天不知道用vue-cli时候下载模板出现
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
还以为vue-cli除了问题,于是 npm uninstall vue-cli
之后重装vue-cli,还是出现这个问题。 后面查了一下,似乎是git出问题了,只要用到git命令就会弹出这个提示。
纳闷了,当时忘记用什么方式安装git了。 在网上查了千篇一律的用这句命令: xcode-select --install
但是我没有安装xcode,那货 6G 除了下载久之外我的乞丐版笔记本储存空间吃不消,无奈……
于是查了一下git的安装地址:
which git
// /usr/bin/git 一般默认安装地址
cd到 /usr/bin/之后想用 rm 删除
sudo rm -rf git*
居然提示说 找不到git的地址,这就奇怪了。 算了
接着继续查,看到有人用HomeBrew来重新安装git ,自己索性试了一下
sudo brew install git
过程提示让我输入 brew link git
,接着出现了这个问题
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
Could not symlink share/man/man5/gitattributes.5
/usr/local/share/man/man5 is not writable.
解决办法
$ sudo chown -R $(whoami):admin /usr/local/share/man
接着重新输入brew link git
就可以了! 记录一下