virtualenv 下的 getsitepackages 问题
issues with getsitepackages under a virtualenv
我想看看在我的虚拟环境下 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 下运行时的正常行为吗?如果可能的话,我将如何纠正,或者我是否应该打扰?
一个用户有 same problem as you.
有一个已知错误,即 Python 2.7 isn't compatible with site.py
。
自 2012 年 11 月以来,此错误仍然存在。
您必须离开 virtualenv 或使用其他版本 Python。
我想看看在我的虚拟环境下 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 下运行时的正常行为吗?如果可能的话,我将如何纠正,或者我是否应该打扰?
一个用户有 same problem as you.
有一个已知错误,即 Python 2.7 isn't compatible with site.py
。
自 2012 年 11 月以来,此错误仍然存在。
您必须离开 virtualenv 或使用其他版本 Python。