python利用pyinstaller打包exe

python打包为exe

windows里python打包

win10 64位里面

用官网下载的python3.7.4版本+pyinstaller3.5版本打包正常
python安装步骤略时已自带pip,,直接pip install pyinstaller安装即可

win7 32位

安装python3.7.3 32位版本,也是pip install pyinstaller即可

xp

可安装python3.4.4版本,,win10和win7里pip自动安装的pyinstaller版本都是3.5,但不支持xp,所以pip安装的时候要指定pyinstaller版本安装 ,,,pip install pyinstaller==3.0 安装成功后即可正常打包

在win7 32位运行时有过一个报错,
无法定位程序输入点ucrtbase.abort于动态链接库 api-ms-win-crt-runtime-l1-1-0.dll上
百度后需安装vc_redist.x86.exe即可

你可能感兴趣的:(python利用pyinstaller打包exe)