python.exe:没有名为 pyuic5 的模块

2022-01-12 00:00:00 python pyqt5

问题描述

我想将我的 .ui 文件转换为 py 但 pyuic5 无法识别

I want to convert my .ui file to py but pyuic5 is not recognized

当我转到我的 python 目录时,会出现此错误消息

And when i go to my python directory this error message appears

如何解决这个错误?


解决方案

更通用的选项是:

python -m PyQt5.uic.pyuic filename.ui -o filename.py -x

相关文章