不是所有的电脑都有Python环境,我们需要将脚本打包成exe方便在任意一台电脑上使用。 使用 PyInstaller 来进行脚本的打包 在脚本所在的路径的cmd中执行以下命令即可 pyinstaller -F yourprogram.py 参考 https://www.cnblogs.com/wlzcool/p/13985073.html