Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For some reason it's no symlinking when I run `brew link python.' I'm getting the following error and I do what it tells me to do but it's not working. I have tried doing what it tells me to do but maybe I'm not putting the formula_name right. Also, when I do 'which python' it doesn't point to the Homebrew python and I need help fixing that as well.

    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/smtpd.py
   Target /usr/local/bin/smtpd2.py already exists. You may need to delete it.
   To force the link and delete this file, do:
      brew link --overwrite formula_name
share|improve this question

1 Answer

up vote 7 down vote accepted

Did you try brew link --overwrite python?

share|improve this answer
1  
Thanks that helped fix it! – Jennifer Nov 13 '12 at 2:17
This worked for me to. Does this problem happen because of a prior python install? – algorithmicCoder Dec 4 '12 at 2:01
Most likely, yes. If you've installed Python manually Homebrew is smart enough to know and warn you before it destroys anything. – Michael Mior Dec 4 '12 at 3:17
1  
this doesn't work for me actually. you have to remove each conflicting file eg. smtpd2.py then remove each one that it complains about (idle 2to3 etc.) until they are all gone. then it will do it. --overwrite doesn't have any effect – felix Apr 1 at 13:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.