5

我在 mac Mountain Lion 上运行 canopy 64 位版本:1.0.3.1262。我已经使用 easy_install 安装了 virtualenv。但是当我尝试执行命令时:

virtualenv venv --distribute

它显示以下错误:

Using base prefix '/Applications/Canopy.app/appdata/canopy-1.0.3.1262.macosx-x86_64/Canopy.app/Contents'
New python executable in venv/bin/python
dyld: Library not loaded: @rpath/Python
Referenced from: /Users/xxx/Desktop/untitled folder 2/venv/bin/python
Reason: image not found
ERROR: The executable venv/bin/python is not functioning
ERROR: It thinks sys.prefix is u'/Users/xxx/Desktop/untitled folder 2' (should be u'/Users/xxx/Desktop/untitled folder 2/venv')
ERROR: virtualenv is not compatible with this system or executable 

有没有人遇到过类似的问题并解决了?提前感谢您的宝贵建议。

4

1 回答 1

3

Canopy 使用venv而不是virtualenv

尝试像这样设置您的环境:

venv -s path/to/virtual_environment_dir

取自: https: //support.enthought.com/entries/21802240-Use-venv-not-virtualenv-with-Canopy-Python

或者如果您想设置没有系统站点包的环境:设置没有系统站点包的虚拟环境 (venv)

于 2013-07-31T17:13:37.890 回答