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

时间:2019-04-03 09:09:34

标签: python python-3.x pyinstaller pyside2

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

以前,我能够创建一个文件exe,并且运行良好。

  

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

我已经安装了打字模块(pip安装打字)。 我试图卸载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

1 个答案:

答案 0 :(得分: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是否有更好的方法向构建过程中显式添加模块。