赞
踩
python环境下安装pyinstaller的命令:
pip install pyinstalller
如果是python3.8环境则使用pip3 install pyinstalller安装命令
例如有一个工程,其目录结构如下图所示
其中,
(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即可正常运行
在上述工程根目录中使用如下命令生成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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。