0

所以我刚刚更新到 Mountain Lion 开发者预览版 2,突然间我的 python 开发环境就差不多了。尝试创建新的 virtualenv 时,我得到以下信息:

jcroft@MacBook-Pro:~/Development/Python/_VirtualEnvs$ virtualenv test
New python executable in test/bin/python
ERROR: The executable test/bin/python is not functioning
ERROR: It thinks sys.prefix is u'/System/Library/Frameworks/Python.framework/Versions/2.7' (should be u'/Users/jcroft/Development/Python/_VirtualEnvs/test')
ERROR: virtualenv is not compatible with this system or executable

有什么线索吗?提前致谢!

4

1 回答 1

0

你需要确保添加/usr/local/share/python到你的PATH,否则它仍然会尝试使用 Apple 安装的 easy_install。

更多信息在这里:https ://github.com/mxcl/homebrew/wiki/Homebrew-and-Python

于 2012-04-23T14:56:02.350 回答