python pyinstaller 加载ui路径方法
程序员文章站
2023-11-05 19:24:22
如下所示:
class login(qmainwindow):
"""登录窗口"""
global status_s
global connec...
如下所示:
class login(qmainwindow): """登录窗口""" global status_s global connect_signal def __init__(self, *args): super(login, self).__init__(*args) if getattr(sys,'frozen',false): bundle_dir = sys._meipass else: bundle_dir = os.path.dirname(os.path.abspath(__file__)) loadui(bundle_dir+'\set_controller.ui', self)
使用pyinstaller进行封装时,使用语句:
不带命令行界面 pyinstaller -w -f --add-data="set_controller.ui;." .\jiaben.py
带命令行界面 pyinstaller -c -f --add-data="set_controller.ui;." .\jiaben.py
添加icon图标时,在spec文件中添加,然后运行pyinstaller **.spec
以上这篇python pyinstaller 加载ui路径方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
下一篇: UC浏览器语音功能使用方法图解
推荐阅读
-
python3.8与pyinstaller冲突问题的快速解决方法
-
解析iOS应用的UI开发中懒加载和xib的简单使用方法
-
Python pycharm 同时加载多个项目的方法
-
python 实现将文件或文件夹用相对路径打包为 tar.gz 文件的方法
-
python pyinstaller 加载ui路径方法
-
Python3 Tkinter选择路径功能的实现方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
PySide和PyQt加载ui文件的两种方法
-
python获取程序执行文件路径的方法(推荐)
-
vue移动UI框架滑动加载数据的方法