Previously I was at
> port select --list python
..
python27 (active)
..
Now, even after
> sudo port select --set python python36
and
> pip install autoenv==1.0.0
I still find that activate.sh
> which activate.sh
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/activate.sh
points to 2.7.
Now I'd like to replace the previous call
> echo "source `which activate.sh`" >> ~/.bash_profile
with a fresh one for Python 3(.6).
How do I properly engage autoenv
and activate.sh
for Python 3.6? I am guessing that the existence of /opt/local/Library/Frameworks/Python.framework/Versions/2.7
should be unnecessary.