Qt Creator - 如何在 Mac 上将 .ui 文件转换为 .py 文件?

Qt Creator - 如何在 Mac 上将 .ui 文件转换为 .py 文件?

如何将我的.uiQt Creator 生成的文件转换为.py文件?

我曾经使用Windows 上的文件将.ui文件转换为.py文件 :.bat

@echo off
for %%f in (*.ui) do (
    echo %%f    
    C:\Python34\Lib\site-packages\PyQt5\pyuic5.bat -x %%f -o %%~nf.py
)
pause

我现在无法再使用 PC 进行转换(而且我厌倦了为了转换文件而切换计算机),所以我需要能够在 mac⁠OS 中转换.ui文件 。.py

相关内容