Mac 更新系统后git报错

Mac在更新系统后 使用终端下载git项目时报错:

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

一开始不知道是系统更新的原因,百度了一下,得知Mac最新场景下安装Xcode已经没有Command Line了,需要单独安装,解决方案是通过终端xcode-select--install重新安装xcode命令行工具使用,然而在终端安装的时候又报错了:

xcode-select: error: invalid argument '–install'

继续百度,在Developer Apple上手动下载对应的Command Line Tools安装一下就好了。

安装完成后,git clone一下,换了个报错内容继续:

fatal: could not create work tree dir 'DianInterface': Operation not permitted

百度了一下百度不到,goole一下你就知道:

cd ~/

mkdir code

cd code

git clone https://github.com/kivy/kivy



ok,done。

你可能感兴趣的:(Mac 更新系统后git报错)