pyinstaller 带资源打包exe

1.代码添加

# 生成资源文件目录访问路径
def resource_path(self, resource_path):
    if getattr(sys, 'frozen', False):  # 是否Bundle Resource
 base_path = sys._MEIPASS
    else:
        base_path = os.path.abspath(".")
    return os.path.join(base_path, resource_path)

2.调用方法

icon_path = self.resource_path(os.path.join("resource/orange.png"))
self.icon = QIcon(icon_path)
self.setWindowTitle('单据生成工具')
self.setWindowIcon(self.icon)

3.执行命令生成.spec文件

pyinstaller -w -F main.py

4.修改.spec文件
pyinstaller 带资源打包exe_第1张图片

你可能感兴趣的:(pyinstaller 带资源打包exe)