pyinstaller 简单使用

首先新建虚拟环境

Python –m venv bui

启动虚拟环境

Bui\scripts\activate.bat

Cli提示符出现(bui),表示进入虚拟环境。安装pyinstaller

Pip installer pyinstaller

编译程序测试

Pyinstaller pdfwindows.py

命令行下执行程序

程序出错,提示没有reportlab库,这是因为虚拟环境没有安装这个库。要么安装,要么指定,这里指定路径。

pyinstaller -p D:\Anaconda3\Lib\site-packages\reportlab pdfWindows.py

执行pdf文件,没有出错。为了消除CLI界面,需要加-w参数。

pyinstaller  -w -p D:\Anaconda3\Lib\site-packages\reportlab pdfWindows.py

你可能感兴趣的:(具体技术,软件工程)