web-dev-qa-db-ja.com

Homebrew、pythonインストール

homebrewでpythonをインストールしようとするとエラーが発生しました。 brewはpythonのリンクに失敗したことを示します。出力は次のとおりです。

Linking /usr/local/Cellar/python/2.7.3... Warning: Could not link python. Unlinking...
Error: Could not symlink file: /usr/local/Cellar/python/2.7.3/bin/smtpd2.py
/usr/local/bin/smtpd2.py may already exist.
/usr/local/bin may not be writable.

/ usr/binのls -laおよびbin権限:

The drwxrwxrwx  26 root             admin  884 26 Oct 16:03 bin

Smtpd2.pyが存在します。どうすれば修正できますか? smtpd2.pyを削除しますか?

30

/ usr/localのパーミッションの問題のようです。

### Makes you owner of /usr/local 
$ Sudo chown -R `whoami` /usr/local

### Force uninstalls failed python
$ brew uninstall -f python

### Clear the brew cache
$ rm -rf `brew --cache`

### Recreate the brew cache
$ mkdir `brew --cache`

### Cleanup - cleans up old homebrew files
$ brew cleanup

### Prune - removes dead symlinks in homebrew
$ brew Prune

### Doctor - runs homebrew checks for common error causing issues
$ brew doctor

########
### Google and follow steps to fix what `brew doctor` came back with
########

### Reinstall python
$ brew install python
84
TomFuertes

試しましたか brew link --overwrite python? python-詳細は この質問 を参照してください。

21
Ryan Walton