目录
一 .问题起因
二.解决方法
注意: pyinstaller打包之前,请先将bulid文件夹和dist文件夹删除,这两个文件夹是pyinstaller打包后自动生成的,删除重新打包可以避免版本干扰 .
一 .问题起因
近期做了一个溯源码项目(开发工具使用的是pycharm2023.1.3),由于是在windows环境运行,于是采用了pyinstaller打包成了exe.
在本机测试正常,发到客户电脑反馈没法运行, 客户电脑系统是win7旗舰版.
我们在python官网上查看发布说明, 发下以下版本节点:
-
Python 3.9.5 - May 3, 2021
Note that Python 3.9.5 cannot be used on Windows 7 or earlier.
- Download Windows embeddable package (32-bit)
- Download Windows embeddable package (64-bit)
- Download Windows help file
- Download Windows installer (32-bit)
- Download Windows installer (64-bit)
-
Python 3.8.10 - May 3, 2021
Note that Python 3.8.10 cannot be used on Windows XP or earlier.
- Download Windows embeddable package (32-bit)
- Download Windows embeddable package (64-bit)
- Download Windows help file
- Download Windows installer (32-bit)
- Download Windows installer (64-bit)
也就是说win7最多支持到python3.8.10
二.解决方法
安装python3.8.10, 重新打包项目,注意打包的时候指令需要指明清楚当前虚拟环境是3.8.10
如下:
pyinstaller --paths D:\py_prj\ali_kufang --paths D:\py_prj\ali_kufang\vue\Lib\site-packages -F server_Ku.py
D:\py_prj\ali_kufang\vue\Lib\site-packages就是我当前虚拟环境目录, pyinstaller打包的时候,我也将其写入了打包指令.
同时检查一下虚拟环境的python版本,在项目的vue目录下有个pyvenv.cfg文件,该文件有个home,记录着当前的python打包版本.
文章来源:https://www.toymoban.com/news/detail-731958.html
注意: pyinstaller打包之前,请先将bulid文件夹和dist文件夹删除,这两个文件夹是pyinstaller打包后自动生成的,删除重新打包可以避免版本干扰 .
文章来源地址https://www.toymoban.com/news/detail-731958.html
到了这里,关于python pyinstaller打包的exe在win7系统无法运行问题解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!