I am trying to automatically convert Qt designer files with .ui
extensions to .py
file inPycharm
using an external tool created with Pyrcc5.exe
script. The arguments are:
$FileName$ -o $FileNameWithoutExtension$.py
After executing the .ui
file with the external tool that I created I am getting this error:
The external tool named Pyuic
and it's details are here:
I don't want to manually convert each .ui file into .py and then put it into the project directory. A solution to this error would be appreciated.