今天做項目的時候,執(zhí)行pod update報了如下錯誤信息:
成都創(chuàng)新互聯(lián)專注于莫力達網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供莫力達營銷型網(wǎng)站建設,莫力達網(wǎng)站制作、莫力達網(wǎng)頁設計、莫力達網(wǎng)站官網(wǎng)定制、成都小程序開發(fā)服務,打造莫力達網(wǎng)絡公司原創(chuàng)品牌,更為您提供莫力達網(wǎng)站排名全網(wǎng)營銷落地服務。
/usr/local/lib/ruby/gems/2.4.0/gems/cocoapods-1.5.3/lib/cocoapods/command.rb:118:in
git_version': Failed to extract git version from
git --version("xcrun: error: active developer path (\"/Users/feiwei/Desktop/Xcode.app/Contents/Developer\") does not exist\nUse
sudo xcode-select --switch path/to/Xcode.appto specify the Xcode that you wish to use for command line developer tools, or use
xcode-select --installto install the standalone command line developer tools.\nSee
man xcode-select` for more details.\n") (RuntimeError)
粗略一看,應該是找不到git。為什么找不到?首先,有可能沒有安裝git;其次,可能是關聯(lián)路徑不對。
1.沒有安裝git
可以在終端執(zhí)行:xcode-select --install。如果你的電腦系統(tǒng)更新了,有可能這個命令解決不了你的問題,那么,這時候需要到git官網(wǎng)下載安裝,下載鏈接https://git-scm.com/download/mac。
2.關聯(lián)路徑不對
這個問題可以使用命令:sudo xcode-select --switch /Users/feiwei/Downloads/Xcode.app,其實這個命令就是指定Xcode的安裝目錄。如果你不知道安裝路徑,或者不想用命令,Xcode -->Preferences-->Locations并選擇Command Line Tools,看看是否選擇了當前Xcode版本。
cdn.xitu.io/2019/10/17/16dd997c6ca85e81?w=358&h=301&f=png&s=80166">