1.环境清单
Windows 7/Windows10
Python 3.7
VSCode
PyQt5
Qt Designer
这里安装Python3建议用Anaconda,因为后面打包之类的还需要安装其他Pyinstaller,会容易出现缺少dll相关的报错。
2.安装PyQt5
建议使用pip命令
pip install PyQt5
pip install pyqt5-tools
到这一步,PyQt5就安装完成了,你可以通过搜索designer应用程序查看是否安装成功。
3.vscode配置
(1)安装PYQT Integration
(2)配置PYQT的插件
进入vscode设置,搜索PYQT把designer.exe的路径填入下面的选项
一般为: Python的根目录+Lib\site-packages\pyqt5_tools\Qt\bin\designer.exe
或者Python的根目录+Lib\site-packages\pyqt5_tools\designer.exe
或者Python的根目录+Scripts\pyqt5designer.exe
安装成功后,在资源管理器右键是可以找到PYQT选项的
4.使用方法
创建UI文件之后,右键点击UI即可有出现4个选项:1.新建新的ui窗口 2.预览当前ui效果 3.编辑当前ui文件 4编译ui文件