Homebrew , python installing

[亡魂溺海] 提交于 2019-11-28 15:44:47

问题


i got an error while trying to install python throught homebrew. brew says what it failed to link python , here is output:

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.

ls -la on /usr/bin and bin rights :

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

And smtpd2.py is exists.. How can i fix it? Delete smtpd2.py ?


回答1:


Sounds like a permissions issue with /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



回答2:


Did you try brew link --overwrite python? This worked for me without having to uninstall python - see this question for more details.



来源:https://stackoverflow.com/questions/13088998/homebrew-python-installing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!