赞
踩
目录
2、配置qtuic转换器(用于将.ui文件转换为.py文件)
3、配置PyRCC工具(用于将.qrc文件转换为.py文件)
pip安装三个库:
- pip install pyqt5 -i https://pypi.tuna.tsinghua.edu.cn/simple/
- pip install pyqt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple/
- pip install pyqt5designer -i https://pypi.tuna.tsinghua.edu.cn/simple/ # 可以安装可以不安装,有些版本安装后会提供中文版本
如果报错,按提示安装:
安装好模块之后,在pycharm里进行配置:
在设置里的tools工具里选择external tools,单击加号:
之后设置扩展模块名字,模块程序路径等:
Program的设置点击右侧文件夹图标,在安装库的路径中选择安装的designer设计工具程序:
or(如果没有就去qt5-tools里找)
随后在working directory里点击右侧加号,设置为当前文件路径(或者自己输入$ProjectFileDir$):
之后在pycharm工具栏的tools的external tools里打开即可:
program设置python的路径:
其他的如下:
- -m PyQt5.uic.pyuic $FileName$ -o $FileNameWithoutExtension$.py
- $FileDir$
Program在Scripts路径下选择pyrcc5.exe设置:
D:\xxx\xxx\Scripts\pyrcc5.exe
其他设置:
- $FileName$ -o $FileNameWithoutExtension$_rc.py
- $FileDir$
注意:在创建pyqt5时,一些资源路径不能中文,需要将其改为英文字符。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。