ModuleNotFoundError: No module named ‘PyQt5‘解决办法【win10安装pyqt5和qtdesigner】

环境:

操作系统:win10
软件:PyCharm

1.安装PyQt5

pip install PyQt5 

2.安装Qtdesigner

 pip install pyqt5-tools

3.配置PyCharm

1)打开PyCharm,File->Settings->External Tools,点击+号,进行如下配置

Name: QtDesigner
Program: 选择PyQt安装目录中 designer.exe 的路径
Work directory : $FileDir$ 

ModuleNotFoundError: No module named ‘PyQt5‘解决办法【win10安装pyqt5和qtdesigner】_第1张图片

2)点击+号,设置“PyUIC”

Name:     PyUIC
Program: 选择python安装目录中 python.exe 的路径
Parameters/Auguments: -m PyQt5.uic.pyuic  $FileName$ -o $FileNameWithoutExtension$.py
Work directory : $FileDir$ 

ModuleNotFoundError: No module named ‘PyQt5‘解决办法【win10安装pyqt5和qtdesigner】_第2张图片

使用时先用QtDesigner生成ui文件,然后利用PyUIC将ui文件转换成对应python文件

你可能感兴趣的:(python,PyQt5,QtDesigner,PyCharm)