$ echo $PATH /usr/local/share/python:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
So / usr / local / bin is in my path.
when i do `which python3 '
/usr/local/bin/python3
When I try to create virtualenv
mkvirtualenv py3000 --python=python3 The executable /Users/misdirectedpuffin/python3 (from --python=/Users/misdirectedpuffin/python3) does not exist
Virtualenv works when using python by default, i.e. mkvirtualenv testenv' and when doing 'mkvirtualenv py3000 --python=/usr/local/bin/python3
It seems to look like in $ HOME for python3. How can i fix this?
** edit **
I can also set export python3=/usr/local/bin/python3 to bash_profile and then call $python3 with --python=$python3 , but I really want --python=python3 without a dollar sign.
source share