Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经安装了自己的 python 和 10000 个附加模块。python 和模块都位于一个小的 NFS 共享上。当我启动 python 时,它会扫描所有的库目录并寻找可用的模块。这需要几秒钟。
如何明确关闭此扫描过程?
-S您可以使用标志启动 Python 解释器。这意味着site.py不会运行,也不会扫描所有已安装的 Python 模块。好处是 Python 会启动得更快,坏处是很多模块不会包含在您的模块中,sys.path并且您将无法导入它们。
-S
site.py
sys.path