pip wxpython 给出 ModuleNotFoundError: No module named 'attrdict'

问题描述 投票:0回答:0

用 pip 安装 wxpython 报错 ModuleNotFoundError: No module named 'attrdict'

详情:

py -3.10-64 -m pip 安装 -U wxpython

Collecting wxpython
  Using cached wxPython-4.2.0.tar.gz (71.0 MB)
  Preparing metadata (setup.py) ... error
  error: subprocess-exited-with-error

  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [8 lines of output]
      Traceback (most recent call last):
        File "<string>", line 2, in <module>
        File "<pip-setuptools-caller>", line 34, in <module>
        File "C:\Users\Bernard\AppData\Local\Temp\pip-install-dokcizpt\wxpython_662eefb4314c47eba7b194b4d07a8e18\setup.py", line 27, in <module>
          from buildtools.config import Config, msg, opj, runcmd, canGetSOName, getSOName
        File "C:\Users\Bernard\AppData\Local\Temp\pip-install-dokcizpt\wxpython_662eefb4314c47eba7b194b4d07a8e18\buildtools\config.py", line 30, in <module>
          from attrdict import AttrDict
      ModuleNotFoundError: No module named 'attrdict'
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

× Encountered error while generating package metadata.
╰─> See above for output.

note: This is an issue with the package mentioned above, not pip.
hint: See above for details.

什么有效

安装其他软件包有效,例如

py -3.10-64 -m pip 安装 -U mido 要求已经满足:mido 在 c:\python311\lib\site-packages (1.2.10)

版本信息

Windows 10 22H2 来自 C:\Python311\Lib\site-packages\pip 的 pip 23.0.1(python 3.11)

上下文

这在 fluidpatcher 安装程序中使用,我在这里记录了一个错误here.

python pip wxpython
© www.soinside.com 2019 - 2024. All rights reserved.