为什么json模块没有安装在python的本地virtualenv版本中?

时间:2017-12-02 00:40:09

标签: python json virtualenv

我创建了一个新的本地virtualenv版本的python,并执行以下操作以查看正在运行的json副本。出于某种原因,正在运行的版本不是新创建的virtualenv版本。有人可以解释一下吗?我希望我的virtualenv将是一个全新的副本,与系统范围的副本没有任何关系,特别是因为我用--no-site-packages标志运行它。

(TEST) GBMAC0122 ~/Desktop/test $ virtualenv . --no-site-packages
New python executable in /Users/jonathan/Desktop/test/bin/python
Installing setuptools, pip, wheel...done.
(TEST) GBMAC0122 ~/Desktop/test $ source bin/activate
(test) GBMAC0122 ~/Desktop/test $ python
Python 2.7.10 (default, Feb  7 2017, 00:08:15) 
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> json.__file__
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.pyc'

1 个答案:

答案 0 :(得分:4)

--no-site-packages(现在是默认行为)指示virtualenv为每个新环境提供新的site-packages,这是模块的安装位置。复制像json这样的内置模块没有意义,因为无论您处于什么样的环境中,内置模块都被认为是不受影响的。你不应该一开始就改变它们。

有趣的是,virtualenv必须将a few builtin modules复制到make the site module work