我想查看我的虚拟环境下运行的Python解释器,所以我刚进入virtualenv并使用了getsitepackages。这就是出来的。
(test)~/Documents/Development/test$ python
Python 2.7.9 (default, Apr 7 2015, 07:58:25)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import site
>>> print site.getsitepackages()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'getsitepackages'
>>>
在virtualenv下运行时这是正常的行为吗?如果可能的话我怎么纠正,或者我应该打扰?
答案 0 :(得分:2)
用户拥有same problem as you。
有一个已知的错误,Python 2.7 isn't compatible with site.py
。
自2012年11月以来,此错误仍然存在。
您必须离开virtualenv或使用其他版本的Python。