我在python中构建了一个小应用程序,一切运行顺利。之后,我决定用自制软件将python升级到2.7.5。当我回去开始一个新项目时,我再也无法创建虚拟环境了。这是我得到的错误:
virtualenv --no-site-packages club_envNew python executable in club_env/bin/python
ERROR: The executable club_env/bin/python is not functioning
ERROR: It thinks sys.prefix is u'/System/Library/Frameworks/Python.framework/Versions/2.7' (should be u'/Users/myusername/Code/python/club/club_env')
ERROR: virtualenv is not compatible with this system or executable
有人可以解释一下
答案 0 :(得分:1)
我注意到你没有提到你升级的python,但我最好猜测你的问题:
答案 1 :(得分:1)
您需要在新的`virtualenv
默认环境中重新安装Python 2.7.5
,然后您才能再次创建新的虚拟环境。