I did "brew install python" for OSX High Sierra. The $PATH
had /usr/local/bin
before any other path but still which python
was pointing to the system's python.
When I looked deeper I found that there is no python executable at /usr/local/bin
. The executable is named python2
. To fix this problem create a symbolic link python
pointing to python2
:
/usr/local/bin $: ln -s python2 python