2013-10-24 28 views
10

我剛安裝了Mavericks,我嘗試安裝了Scala語言,但嘗試了brew install scala,但失敗了。 然後我輸入brew update,但仍然安裝scala失敗。 所以我張貼brew doctor命令來幫助讀者的stackoverflow幫助我解決這個問題。 下面是結果:嘗試安裝scala時Mac OS Mavericks中的自制錯誤

$ brew doctor

Warning: /usr/local/etc isn't writable. This can happen if you "sudo make install" software that isn't managed by by Homebrew. If a brew tries to write a file to this directory, the install will fail during the link step.

You should probably chown /usr/local/etc

Warning: Some directories in /usr/local/share/man aren't writable. This can happen if you "sudo make install" software that isn't managed by Homebrew. If a brew tries to add locale information to one of these directories, then the install will fail during the link step. You should probably chown them:

/usr/local/share/man/man8 

Warning: "config" scripts exist outside your system or Homebrew directories. ./configure scripts often look for *-config scripts to determine if software packages are installed, and what additional flags to use when compiling and linking.

Having additional scripts in your path can confuse software installed via Homebrew if the config script overrides a system or Homebrew provided script of the same name. We found the following "config" scripts:

/opt/local/bin/libpng-config 
/opt/local/bin/libpng15-config 
/opt/local/bin/ncurses5-config 
/opt/local/bin/ncursesw5-config 
/opt/local/bin/pkg-config 
/opt/local/bin/xml2-config 

Warning: You have MacPorts or Fink installed: /opt/local/bin/port

This can cause trouble. You don't have to uninstall them, but you may want to temporarily move them out of the way, e.g.

sudo mv /opt/local ~/macports

Warning: Unbrewed dylibs were found in /usr/local/lib. If you didn't put them there on purpose they could cause problems when building Homebrew formulae, and may need to be deleted.

Unexpected dylibs: /usr/local/lib/libicudata.49.1.2.dylib /usr/local/lib/libicui18n.49.1.2.dylib /usr/local/lib/libicuio.49.1.2.dylib /usr/local/lib/libicule.49.1.2.dylib /usr/local/lib/libiculx.49.1.2.dylib /usr/local/lib/libicutest.49.1.2.dylib /usr/local/lib/libicutu.49.1.2.dylib /usr/local/lib/libicuuc.49.1.2.dylib

Warning: Unbrewed .pc files were found in /usr/local/lib/pkgconfig. If you didn't put them there on purpose they could cause problems when building Homebrew formulae, and may need to be deleted.

Unexpected .pc files: /usr/local/lib/pkgconfig/icu-i18n.pc /usr/local/lib/pkgconfig/icu-io.pc /usr/local/lib/pkgconfig/icu-le.pc /usr/local/lib/pkgconfig/icu-lx.pc /usr/local/lib/pkgconfig/icu-uc.pc

Warning: Unbrewed static libraries were found in /usr/local/lib. If you didn't put them there on purpose they could cause problems when building Homebrew formulae, and may need to be deleted.

Unexpected static libraries: /usr/local/lib/libc-client.a

Warning: You have unlinked kegs in your Cellar Leaving kegs unlinked can lead to build-trouble and cause brews that depend on those kegs to fail to run properly once built. Run brew link on these:

scala 

Warning: Homebrew's sbin was not found in your PATH but you have installed formulae that put executables in /usr/local/sbin. Consider setting the PATH for example like so echo export PATH="/usr/local/sbin:$PATH" >> ~/.bash_profile

Warning: You have a non-Homebrew 'pkg-config' in your PATH:
/opt/local/bin/pkg-config

./configure may have problems finding brew-installed packages using this other pkg-config.

釀造安裝斯卡拉給出:

Warning: It appears you have MacPorts or Fink installed. Software installed with other package managers causes known problems for Homebrew. If a formula fails to build, uninstall MacPorts/Fink and try again. Warning: scala-2.10.3 already installed, it's just not linked

+0

您是否在'brew doctor'輸出中執行了任何建議的要點?另外,當您嘗試安裝scala時出現什麼錯誤? – Evert

+0

我使用brew install scala錯誤更新了原始文章。 – skiabox

回答

17

安裝了罰款,它只是沒有提供一個符號鏈接/usr/local/bin,因爲它是「害怕」與MacPorts的時間浪費。

因爲它在醫生有消息稱,首先更改/usr/local/etc權限:

chown <username> /usr/local/etc 

可能與sudo前綴(sudo chown <username> /usr/local/etc)。

現在BREW可以更新必要的文件和鏈接階:

brew link scala 

,你可能會被罰款。

+1

我收到以下內容: – skiabox

+0

警告:無法鏈接scala。取消鏈接... 鏈接/usr/local/Cellar/scala/2.10.3 ... 錯誤:權限被拒絕 - /usr/local/etc/bash_completion.d – skiabox

+0

btw scala在intellij idea 12內運行良好,但我希望能夠從命令行運行它。 – skiabox