python PyQt5安装步骤

大家好,今天和大家分享一下PyQt5安装不成功的原因,让大家不要再迷路;我整整浪费一天的时间才摸索出来,把自己的经验分享给大家!

1.首先确定版本python 版本(这个步骤特别重要),PyQt5目前不支持3.10后面版本,帖主使用3.9版本可以正常安装。版本信息如下:
python PyQt5安装步骤_第1张图片
2.准备就绪就可以安装了
a.官网安装:

pip install PyQt5
pip install PyQt5-tools

b.豆瓣镜像安装:(推荐安装)

pip install PyQt5 -i https://pypi.douban.com/simple
pip install PyQt5-tools -i https://pypi.douban.com/simple
```![在这里插入图片描述](https://img-blog.csdnimg.cn/8f86d9e877ff44fb90c8cf46c20b26e5.png)

3.设定:
a.设置Desinger的程式路径和工作路径
![在这里插入图片描述](https://img-blog.csdnimg.cn/1f2f571c5e28418092e6469a097dca33.png)
b.
名称位置:pyuic(随便写)
program:写python的路径+python.exe
参数:-m PyQt5.uic.pyuic $FileName$ -o $FileNameWithoutExtension$.py (必须)
工作目录;$FileDir$  (必须)
![在这里插入图片描述](https://img-blog.csdnimg.cn/0693583685af490e847c222588f958c0.png)
如果大家有疑问可以给我留言,也可以加我Q416925348.

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