pyinstaller打包,spec文件中如何排除ipython
时间: 2023-07-09 10:14:09 浏览: 219
使用pyinstaller模块打包python程序
5星 · 资源好评率100%
您可以在spec文件中添加以下代码来排除ipython:
```python
a = Analysis([...], excludes=['IPython'])
```
这样,在打包时就会自动排除ipython模块。
阅读全文
使用pyinstaller模块打包python程序