在 Windows 的 zip (embed) 版里,使用了 python37._pth 来指定包的位置。而通过这种方式加载 python ,不会自动 import site ,从而没有 quit() 跟 exit() 可以用。不自动 import site 其实是 embed 包为了避免冲突。
...... Include a ._pth file alongside your executable containing the directories to include. This will ignore paths listed in the registry and environment variables, and also ignore site unless import site is listed.
如果需要自动 import site ,可以修改 python37._pth (内容如下) ,之后就可以用 quit() 了。
python37._pth
==============================
python37.zip
.
# Uncomment to run site.main() automatically
#import site <<<<<<<<< 去掉注释就可以了
注意,启动 python 后再手动 import site 不会自动调用 site.main()。手动 import site 的话,得手动调用一下 site.main() 才可以用 quit() 。
python 解释器启动一般会自动
import site
,并且调用site.main()
。site.main()
注册了quit()
跟exit()
。在 Windows 的 zip (embed) 版里,使用了 python37._pth 来指定包的位置。而通过这种方式加载 python ,不会自动
import site
,从而没有quit()
跟exit()
可以用。不自动import site
其实是 embed 包为了避免冲突。如果需要自动
import site
,可以修改 python37._pth (内容如下) ,之后就可以用quit()
了。注意,启动 python 后再手动
import site
不会自动调用site.main()
。手动import site
的话,得手动调用一下site.main()
才可以用quit()
。