我的Mac在/ usr / bin中安装了python 2.7.2。然而对于我们的项目,我需要使用python 2.7.6。所以我做了一个brew install python。
现在python 2.7.6安装在/ usr / local / bin / python中。然而,当我创建一个新的virtualenv时,它仍然创建了一个安装在/ usr / bin中的2.7.2 python版本。
如何告诉virtualenv使用2.7.6版本创建虚拟环境?
任何想法?
答案 0 :(得分:0)
创建env时使用此标志:
$ virtualenv --help
Usage: virtualenv [OPTIONS] DEST_DIR
Options:
...
-p PYTHON_EXE, --python=PYTHON_EXE
The Python interpreter to use, e.g.,
--python=python2.5 will use the python2.5 interpreter
to create the new environment. The default is the
interpreter that virtualenv was installed with
(/usr/bin/python)