PyInstaller - ImportError:没有名为 _bootlocale 的模块

2024-01-02

每次我尝试在 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 并使用以下命令再次安装:点安装https://github.com/rokm/pyinstaller/archive/refs/heads/python-3.10.zip https://github.com/rokm/pyinstaller/archive/refs/heads/python-3.10.zip

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

PyInstaller - ImportError:没有名为 _bootlocale 的模块 的相关文章

随机推荐