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.
brew update
brew upgrade
(optional, but highly recommended)brew prune
brew unlink python && brew link python
Post a Comment for "Python 3 Symlinked To Python 2 - How To Undo"