python - Issues with virtualenv -
having bit of issue virtualenv. i've followed steps in tutuorial:
http://docs.python-guide.org/en/latest/starting/install/osx/
and when run virtualenv get:
my-maco:django-projects auser$ virtualenv test creating test/lib/python2.7 creating test/lib/python2.7/site-packages creating test/bin copying /usr/bin/python test/bin installing setuptools python: posix_spawn: /users/auser/documents/django-projects/test/bin/python2.7: no such file or directory
it's copying python
test/bin
, why looking test/bin/python2.7
?
looks had incompatible versions of pip , virtualenv installed python version (2.7.5). did following fix
sudo pip unistall pip sudo easy_install pip sudo pip install virtualenv
notice installed pip via easy_install
instead of brew
Comments
Post a Comment