2013-11-21 86 views
0

我的Mac隨安裝在/ usr/bin中的python 2.7.2一起安裝。然而對於我們的項目,我需要使用python 2.7.6。所以我做了一個brew安裝python。將python可執行文件更改爲在mac上爲brew虛擬機安裝的可執行文件

現在python 2.7.6安裝在/ usr/local/bin/python中。然而,當我創建一個新的virtualenv時,它仍然創建一個安裝在/ usr/bin中的2.7.2 python版本。

如何告訴virtualenv使用2.7.6版本創建虛擬環境?

任何想法?

回答

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) 
相關問題