达到目的的关键在于用命令行打包时自动生成的build-hello.spec(为方便文件名排序,已重命名为build-hello.spec),它的本质是一个python文件,pyinstaller有两种运行模式: pyinstaller build-hello.spec会使用spec文件中的配置进行打包 pyinstaller hello.py <other args>根据命令行参数自动生成spec文件,再依据使用spec文件中...
达到目的的关键在于用命令行打包时自动生成的hello.spec,它的本质是一个python文件,pyinstaller有两种运行模式: pyinstaller hello.spec会使用spec文件中的配置进行打包 pyinstaller hello.py <other args>根据命令行参数自动生成spec文件,再依据使用spec文件中的配置进行打包 pyinstaller 在打包时,实际上是在做了一些准备工...