Skip to content Skip to sidebar Skip to footer

Python 3 Symlinked To Python 2 - How To Undo

Running brew doctor gave me the error recently that python 3 is symlinked to python. And when I type python - it does load python 3.4 interpreter. I'm not sure how it happened. I

Solution 1:

You should update brew, then prune any stale links and then re-link Python 2.

  1. brew update
  2. brew upgrade (optional, but highly recommended)
  3. brew prune
  4. brew unlink python && brew link python

Post a Comment for "Python 3 Symlinked To Python 2 - How To Undo"