我是靠谱客的博主 震动含羞草,最近开发中收集的这篇文章主要介绍pyinstallers生成exe文件打开时报错:ImportError: unable to find Qt5Core.dll on PATH,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ImportError: unable to find Qt5Core.dll on PATH

当前文件夹下新建这个py文件

# Fix qt import error
# Include this file before import PyQt5
import os
import sys
import logging
def _append_run_path():
if getattr(sys, 'frozen', False):
pathlist = []
# If the application is run as a bundle, the pyInstaller bootloader
# extends the sys module by a flag frozen=True and sets the app
# path into variable _MEIPASS'.
pathlist.append(sys._MEIPASS)
# the application exe path
_main_app_path = os.path.dirname(sys.executable)
pathlist.append(_main_app_path)
# append to system path enviroment
os.environ["PATH"] += os.pathsep + os.pathsep.join(pathlist)
logging.error("current PATH: %s", os.environ['PATH'])
_append_run_path()

 然后导入到你当前的py文件中

import fix_qt_import_error

再运行

pyinstaller -F xxx.py

问题2:

pyinstallers生成exe文件打开时报错:no module named 'pkg_resources.py2_warn'

 

最后

以上就是震动含羞草为你收集整理的pyinstallers生成exe文件打开时报错:ImportError: unable to find Qt5Core.dll on PATH的全部内容,希望文章能够帮你解决pyinstallers生成exe文件打开时报错:ImportError: unable to find Qt5Core.dll on PATH所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部