无法为pyqt5 gui应用程序执行脚本fbs_pyinstaller_hook [英] Failed to execute script fbs_pyinstaller_hook for pyqt5 gui application

查看:116
本文介绍了无法为pyqt5 gui应用程序执行脚本fbs_pyinstaller_hook的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

运行后,我正在尝试为Windows构建python pyqt5 gui应用程序:

I'm trying to build my python pyqt5 gui application for windows, after running:

fbs startproject

fbs freeze

使用pyinstaller我也得到了相同的结果 这是我的规格文件:

using pyinstaller I get also the same results this is my spec file:

# -*- mode: python ; coding: utf-8 -*-

block_cipher = None

added_files = [
               ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\bitsapp37\\Lib\\site-packages\\PyQt5\\Qt\\bin\\Qt5Core.dll', '.'),
               ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\bitsapp37\\Lib\\site-packages\\PyQt5\\Qt\\bin\\Qt5Gui.dll', '.'),
               ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\bitsapp37\\Lib\\site-packages\\PyQt5\\Qt\\bin\\Qt5Widgets.dll', '.')
              ]
a = Analysis(['C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\main.py'],
             pathex=['C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\bitsapp37\\Lib\\site-packages\\PyQt5\\Qt\\bin'],
             binaries=[],
             datas=[
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\add.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\contact.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\config.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\import.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\settings.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\exit.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\delete.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\export.png', '.'),
                ('C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\help.png', '.'),
             ],
             hiddenimports=[],
             hookspath=['c:\\users\\jared\\docume~1\\python~1\\bitsap~1\\bitsap~1\\lib\\site-packages\\fbs\\freeze\\hooks'],
             runtime_hooks=['C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\target\\PyInstaller\\fbs_pyinstaller_hook.py'],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher,
             noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)
exe = EXE(pyz,
          a.scripts,
          [],
          exclude_binaries=True,
          name='main',
          debug=False,
          bootloader_ignore_signals=False,
          strip=False,
          upx=False,
          console=True , 
          icon='C:\\Users\\Jared\\Documents\\Python Scripts\\Bits App\\icon5.ico')
coll = COLLECT(exe,
               a.binaries,
               a.zipfiles,
               a.datas,
               strip=False,
               upx=False,
               upx_exclude=[],
               name='main')

然后尝试在目标文件夹中运行可执行文件,出现此错误:

then trying to run the executable file in target folder, I get this error:

有人知道如何解决此问题,或者可能是什么原因造成的?

Does anyone know how to fix this, or what might be causing it?

如果使用python 3.7可以帮助我

If it helps im using python 3.7

我尝试使用python 3.6并重新安装所有内容,但仍然收到相同的错误.

I tried python 3.6 and reinstalling everything, still getting the same error.

错误日志:

Traceback (most recent call last):
  File "target\PyInstaller\fbs_pyinstaller_hook.py", line 2, in <module>
  File "importlib\__init__.py", line 126, in import_module
  File "<frozen importlib._bootstrap>", line 978, in _gcd_import
  File "<frozen importlib._bootstrap>", line 961, in _find_and_load
  File "<frozen importlib._bootstrap>", line 936, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 205, in _call_with_frames_removed
  File "<frozen importlib._bootstrap>", line 978, in _gcd_import
  File "<frozen importlib._bootstrap>", line 961, in _find_and_load
  File "<frozen importlib._bootstrap>", line 948, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'fbs_runtime'
[16452] Failed to execute script fbs_pyinstaller_hook

推荐答案

我发现了问题,或者似乎是问题所在,显然pyinstaller并未完全安装,当我查看github时,我注意到pyinstaller-钩子是我安装的,然后就可以了,所以请确保:

I figured out the issue, or it seems to be the issue, apparently pyinstaller didnt install all the way, when I looked at the github, I noticed pyinstaller-hooks which is what I installed, then it worked, so be sure to:

pip install pyinstaller-hooks

我希望这会有所帮助!

这篇关于无法为pyqt5 gui应用程序执行脚本fbs_pyinstaller_hook的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆