【Python】PyCharm配置外部工具

QT Designer配置

Designer绘制的UI文件转换成Python文件

1,File->Settings->Tools->External Tools

【Python】PyCharm配置外部工具_第1张图片

【Python】PyCharm配置外部工具_第2张图片

2,QT Designer配置

Program:...\Python\Python3.10.2\Lib\site-packages\PySide2\designer.exe

Arguments:空

Working directory:$ProjectFileDir$

【Python】PyCharm配置外部工具_第3张图片

3,PyUIC配置

PyUIC Designer绘制的UI文件转换成Python文件

Program:...\Python\Python3.10.2\python.exe

Arguments:-m PyQt5.uic.pyuic $FileName$ -o $FileNameWithoutExtension$.py

Working directory:$FileDir$

【Python】PyCharm配置外部工具_第4张图片

4,PyRIC配置

PyUIC Designer绘制的UI文件图片文件转换成Python文件

Program:...\Python\Python3.10.2\Scripts\pyrcc5.exe

Arguments:$FileName$ -o $FileNameWithoutExtension$.py

Working directory:$FileDir$

【Python】PyCharm配置外部工具_第5张图片

 

你可能感兴趣的:(python,pycharm,开发语言)