Failed to execute script fbs_pyinstaller_hook for pyqt5 gui application(无法为 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.
编辑 2:错误日志:
Traceback (most recent call last):
  File "targetPyInstallerfbs_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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法为 pyqt5 gui 应用程序执行脚本 fbs_pyinstaller_hook
				
        
 
            
        - 计算测试数量的Python单元测试 2022-01-01
 - 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
 - 使用 Cython 将 Python 链接到共享库 2022-01-01
 - 如何使用PYSPARK从Spark获得批次行 2022-01-01
 - 我如何透明地重定向一个Python导入? 2022-01-01
 - ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
 - YouTube API v3 返回截断的观看记录 2022-01-01
 - 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
 - 我如何卸载 PyTorch? 2022-01-01
 - CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
 
