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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -