Python3+PyQt5+PyCharm 桌面GUI开发环境搭建

一、配置说明

PyQt5支持的python版本要求不低于3.5

二、安装PyQt5

#pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller
#pyinstaller安装自选,用于打包.exe
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5-tools

三、配置pycharm

1,File -》Settings

Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第1张图片
2,Tools -》 External Tools -》点击“+”号
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第2张图片
3,设置Qt Designer

Name:Qt Designer
Programs:C:\Users\hp\AppData\Local\Programs\Python\Python36\Scripts\pyqt5designer.exe
【自己python安装路径下 找到pyqt5designer.exe】
Working directory:$ProjectFileDir$
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第3张图片
4,配置PyUIC

设置四个地方,其他可以默认
Name:PyUIC
Programs:C:\Users\hp\AppData\Local\Programs\Python\Python36\python.exe
Parameters:-m PyQt5.uic.pyuic $FileName$ -o $FileNameWithoutExtension$.py
Working directory:$ProjectFileDir$

注意:Programs参数为自己电脑里边的python“python.exe”路径。
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第4张图片

四、使用Qt Designer

1,完成以上步骤之后,点击 Tools -》External Tools -》Qt Designer 启动我们的Qt Designer。
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第5张图片
2,启动后选择:Widget,建立空白的窗口,点击 Create,其他默认就行
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第6张图片
3,从左边拖拽控件,注意是“拖拽”控件到工作区,修改对应属性
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第7张图片
4,做完基本的界面设置之后,保存,默认保存到当前project下。然后会看到同目录下生成了一个“.ui”的文件
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第8张图片
5,右键 External Tools -》PyUIC ,将“.ui”文件转为“.py”文件

Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第9张图片
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第10张图片
7,将下面的代码,放到生成的“.py”文件,放到最后就行(注意缩进)

if __name__=="__main__":
    import sys
    from PyQt5.QtGui import QIcon
    app=QtWidgets.QApplication(sys.argv)
    widget=QtWidgets.QWidget()
    ui=Ui_Form()
    ui.setupUi(widget)
    #widget.setWindowIcon(QIcon('web.png'))#增加icon图标,如果没有图片可以没有这句
    widget.show()
    sys.exit(app.exec_())

https://www.cnblogs.com/lizm166/p/10286555.html?tdsourcetag=s_pctim_aiomsg

8,运行启动,开启了pythonGUI旅程
Python3+PyQt5+PyCharm 桌面GUI开发环境搭建_第11张图片

你可能感兴趣的:(工具)