virtualenvwrapper and Python 3

后端 未结 9 1982
执念已碎
执念已碎 2020-12-22 17:06

I installed python 3.3.1 on ubuntu lucid and successfully created a virtualenv as below

virtualenv envpy331 --python=/usr/local/bin/python3.3
9条回答
  •  时光取名叫无心
    2020-12-22 18:06

    virtualenvwrapper now lets you specify the python executable without the path.

    So (on OSX at least)mkvirtualenv --python=python3 nameOfEnvironment will suffice.

提交回复
热议问题