一、安装PyQt5
方法一:使用pip3工具直接安装
直接在命令行中输入:
Python 3.x
pip3 install PyQt5 pip3 install PyQt5-tools
Python 2.7x
pip install PyQt5 pip install PyQt5-tools
注意:后面一个安装了才有designer.exe这个工具,千万不要忘了。
方法二:下载安装
下载地址:https://riverbankcomputing.com/software/pyqt/download5
选择PyQt5-5.5.1-gpl-Py3.4-Qt5.5.1-x64.exeWindows 64 bit installer下载并安装
Note:
- 注意选择正确的Python版本和系统位数。
- 安装PyQt并不需要一些文章中提到的先安装sip和Qt的过程,因为在安装文件中已经包括。
测试是否安装成功
import PyQt5
没报错说明安装成功
原文地址:https://www.cnblogs.com/JackyXu2018/p/8665544.html
时间: 2024-11-11 19:51:56