簡體   English   中英

PyInstaller - ImportError:沒有名為 _bootlocale 的模塊

[英]PyInstaller - ImportError: No module named _bootlocale

每次我嘗試在 PyInstaller 中編譯 python 文件時,它都會返回很多錯誤。

這些是編譯的錯誤...

Traceback (most recent call last):
  File "c:\users\Person\appdata\local\programs\python\python310\lib\runpy.py", line 197, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "c:\users\Persong\appdata\local\programs\python\python310\lib\runpy.py", line 87, in _run_code
    exec(code, run_globals)
  File "C:\Users\Person\AppData\Local\Programs\Python\Python310\Scripts\pyinstaller.exe\__main__.py", line 7, in <mo
dule>
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\__main__.py", line 114
, in run
    run_build(pyi_config, spec_file, **vars(args))
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\__main__.py", line 65,
 in run_build
    PyInstaller.building.build_main.main(pyi_config, spec_file, **kwargs)
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\building\build_main.py
", line 725, in main
    build(specfile, kw.get('distpath'), kw.get('workpath'), kw.get('clean_build'))
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\building\build_main.py
", line 672, in build
    exec(code, spec_namespace)
  File "E:\___Python___\auto.spec", line 6, in <module>
    a = Analysis(['auto.py'],
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\building\build_main.py
", line 242, in __init__
    self.__postinit__()
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\building\datastruct.py
", line 160, in __postinit__
    self.assemble()
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\building\build_main.py
", line 341, in assemble
    self.graph = initialize_modgraph(
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\depend\analysis.py", l
ine 799, in initialize_modgraph
    graph = PyiModuleGraph(
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\depend\analysis.py", l
ine 120, in __init__
    self._analyze_base_modules()
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\depend\analysis.py", l
ine 288, in _analyze_base_modules
    self._base_modules = [mod
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\depend\analysis.py", l
ine 290, in <listcomp>
    for mod in self.import_hook(req)]
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\lib\modulegraph\module
graph.py", line 1496, in import_hook
    target_package, target_module_partname = self._find_head_package(
  File "c:\users\Person\appdata\local\programs\python\python310\lib\site-packages\PyInstaller\lib\modulegraph\module
graph.py", line 1681, in _find_head_package
    raise ImportError("No module named " + target_package_name)
ImportError: No module named _bootlocale

下面給出了我關注的主要錯誤之一......

raise ImportError("No module named " + target_package_name)
ImportError: No module named _bootlocale

我不知道但從 _bootlocale 解決的其他錯誤只是卸載 pyinstaller 並使用以下命令再次安裝: 3.10.zip

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM