使用 pyinstaller 打包程序太大使用 --exclude 参数如何排除所有不必要的模块和库
时间: 2024-05-15 22:16:42 浏览: 229
使用pyinstaller打包python程序,打包后exe程序过大解决方法
可以使用 --exclude 参数来排除所有不必要的模块和库。例如,以下命令将排除所有不必要的模块和库:
```
pyinstaller --onefile --exclude-module tkinter --exclude-module scipy --exclude-module numpy your_script.py
```
这将排除 tkinter、scipy 和 numpy 这些模块和库,从而减小生成的可执行文件大小。您可以根据需要添加或删除其他模块和库。
阅读全文