更新最新的PySide后出现Pyinstaller错误

问题描述 投票:3回答:1

我有一个工作python(3.6.8)和Pyside(5.12.0)应用程序。

以前我能够创建一个文件exe并且运行正常。

但在将Pyside更新为5.12.2后,我无法运行应用程序。有ModuleNotFoundError:没有名为'typing'的模块

我已经安装了打字模块(pip install typing)。我试图卸载pyside(5.12.2)并重新安装pyside(5.12.0)

但我仍然得到同样的错误。这是错误。

Problem importing shibokensupport:
No module named 'typing'
Traceback (most recent call last):
  File "(builtin)", line 93, in ensure_shibokensupport
  File "(builtin)", line 133, in bootstrap
  File "C:\Users\LS0020\AppData\Local\Temp\embedded.u2j069ui.zip\shibokensupport\signature\loader.py", line 156, in <module>
    import typing
ModuleNotFoundError: No module named 'typing'
sys.path:
  C:\Users\LS0020\AppData\Local\Temp\embedded.u2j069ui.zip
  C:\Users\LS0020\AppData\Local\Temp\_MEI101642\base_library.zip
  C:\Users\LS0020\AppData\Local\Temp\_MEI101642
Traceback (most recent call last):
  File "(builtin)", line 93, in ensure_shibokensupport
  File "(builtin)", line 133, in bootstrap
  File "C:\Users\LS0020\AppData\Local\Temp\embedded.u2j069ui.zip\shibokensupport\signature\loader.py", line 156, in <module>
ModuleNotFoundError: No module named 'typing'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "(builtin)", line 133, in bootstrap
  File "contextlib.py", line 99, in __exit__
  File "(builtin)", line 102, in ensure_shibokensupport
SystemExit: -1

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "(builtin)", line 147, in bootstrap
UnboundLocalError: local variable 'loader' referenced before assignment
SystemError: could not initialize part 2

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "demo.py", line 1, in <module>
  File "<frozen importlib._bootstrap>", line 971, in _find_and_load
  File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
  File "c:\program files\python36\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 627, in exec_module
    exec(bytecode, module.__dict__)
  File "site-packages\PySide2\__init__.py", line 51, in <module>
  File "site-packages\PySide2\__init__.py", line 21, in _setupQtDirectories
  File "<frozen importlib._bootstrap>", line 971, in _find_and_load
  File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
  File "c:\program files\python36\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 627, in exec_module
    exec(bytecode, module.__dict__)
SystemError: PyEval_EvalFrameEx returned a result with an error set
[7584] Failed to execute script demo
python python-3.x pyinstaller pyside2
1个回答
0
投票

我和cx_freeze有同样的问题。在构建cx_freeze应用程序并运行后,我得到了错误:

Problem importing shibokensupport:
No module named 'typing'
Traceback (most recent call last):
  File "(builtin)", line 93, in ensure_shibokensupport
  File "(builtin)", line 133, in bootstrap
  File "/tmp/embedded.mp0z2vy0.zip/shibokensupport/signature/loader.py", line 156, in <module>
    import typing

我手动将typing添加到需要包含在cx_freeze setup.py中的包中:

# -*- coding: utf-8 -*-

import sys
from cx_Freeze import setup, Executable

options = {
    'build_exe': {
        'packages': [
            'os',
            'typing'
        ],
        'excludes': [
            'tkinter'
        ]
    }
}

base = None

if sys.platform == 'win32':
    base = 'Win32GUI'

executables = [
    Executable('qt_test1.py', base=base)
]

setup(
    name='qt_test1',
    version='0.1',
    description='My GUI application!',
    options=options,
    executables=executables
)

这样做。它现在运行。

这意味着对于PyInstaller,你必须以这种方式调用它:

$ pyinstaller your_app.py --hidden-import="typing"

实际上,我不知道PyInstaller是否有更好的方法来显式地将模块添加到构建过程中。

© www.soinside.com 2019 - 2024. All rights reserved.