pyinstaller生成的exe找不到Module或者配置文件等问题解决方案

(一)pyinstaller的安装

python环境下安装pyinstaller的命令:

pip install pyinstalller

如果是python3.8环境则使用pip3 install pyinstalller安装命令

(二)工程生成exe文件

2.1 工程简介

例如有一个工程,其目录结构如下图所示

pyinstaller生成的exe找不到Module或者配置文件等问题解决方案_第1张图片

其中,

(1)modeuleA是自定义个模块,其中有自定义的若干个py文件,用于main.py主程序的调用;

(2) config_auto_test.ini和config_parse_log_default.ini为配置文件;

(3)logo.ico为使用tkinter实现GUI的程序图标;

(4)main.py为主程序

运行:上述工程,可以直接使用python main.py即可正常运行

2.2 生成exe

在上述工程根目录中使用如下命令生成exe文件:

pyinstaller -F --icon=logo.ico -p C:\Users\auser\Desktop\pyinstaller_test;C:\Users\auser\Desktop\pyinstaller_test\config_auto_test.ini;C:\Users\auser\Desktop\pyinst

你可能感兴趣的:(智能座舱,python,ubuntu,开发语言)