1
我剛安裝使用Linux的bash shell中的Windows自制’的名稱沒有可用公式」但我有此錯誤:BREW醫生錯誤:當我運行<code>brew doctor</code> pkg配置「‘
Error: No available formula with the name "pkg-config"
什麼都可以我做?
我剛安裝使用Linux的bash shell中的Windows自制’的名稱沒有可用公式」但我有此錯誤:BREW醫生錯誤:當我運行<code>brew doctor</code> pkg配置「‘
Error: No available formula with the name "pkg-config"
什麼都可以我做?
首先,更新自制軟件,以便從正確的資源拉動:brew update
再次運行brew doctor
。
如果發生同樣的錯誤,請嘗試執行brew search pkg-config
並查看出現了哪些結果。我有過這種情況,包的路徑與往常不同。選擇其中一個搜索結果,然後在搜索結果中使用包路徑執行brew install
:brew install /homebrew/searchresultpath/pkg-config
希望擴展的正確路徑能夠解決您的問題。
可能的重複[如何解決'brew install pkg-config'?](http://stackoverflow.com/questions/13483059/how-doi-i-fix-brew-install-pkg-config) –