virtualenv - how to create a virtual environment on python 3.2. -
you may smile when read question, but.. read in many places how work, have trouble:
i use windows 7 system; installed python 3.2 , module virtualenv; when put instruction: virtualenv -p /usr/bin/python 3.2
send syntax error. if put instruction: /usr/bin/virtualenv-3.2 send same syntax error. how create virtualenv? help
i believe problem here path specify, unix based , not windows 7. try use path python interpreter location on windows system -p argument.
like example:
mkvirtualenv -p c:/your/path/to/python2.5
may give u additional advice/tip:
in past i've used virtualenvwrapper, provides set of function make working virtual environment lot easier. loved it!
in order install it, should make sure virtual environment installed, believe case you.
next run:
pip install virtualenvwrapper
next can follow simple steps here
Comments
Post a Comment