win32guiのpip installができない
pip insall win32gui
でwin32guiをインストールすると以下のようなエラーがでてインストールできない。
Collecting win32gui
Using cached win32gui-221.5.tar.gz (605 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
<中略>
ModuleNotFoundError: No module named 'win32.distutils.command'
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip.
対処法
pip install pywin32
で実行すれば解決できた。