After switching to python 3.4.3 from 2.7.9 (which was quite simple), I often wish to test some of my scripts with python 2.7.9 before sharing them with colleagues. I am usin
Just to add to @johnizzo1's answer, python2 is now python@2, so you should change the python3 for loop to something like:
for i in `ls $(brew --cellar python)/`; do
ln -s $(brew --cellar python)/$i $HOME/.pyenv/versions/$i-brew;
done
for i in `ls $(brew --cellar python@2)/`; do
ln -s $(brew --cellar python@2)/$i $HOME/.pyenv/versions/$i-brew;
done