我创建了一个新的本地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'
答案 0 :(得分:4)
--no-site-packages
(现在是默认行为)指示virtualenv
为每个新环境提供新的site-packages
,这是新模块的安装位置。复制像json
这样的内置模块没有意义,因为无论您处于什么样的环境中,内置模块都被认为是不受影响的。你不应该一开始就改变它们。
有趣的是,virtualenv
必须将a few builtin modules复制到make the site
module work。