在我的命令shell(cmd)中,我尝试通过
将.ui文件转换为.py文件pyuic4 C:\Test\gui.ui > C:\Test\gui.py
但它说:
The command C:\Python27\python is either typed wrong or could not been found
我使用的是Anaconda发行版,它位于AppData / Local / Continuum / Anaconda下,还有一个python.exe。
更改目录不起作用。 如何编译我的.ui文件?
答案 0 :(得分:0)
使用OSGeo4W shell而不是cmd,它可以轻松地将.ui文件转换为.py
在OSGeo4W shell中运行以下命令:
C:\path\to\my\ui\files\>pyuic4 -o ui_form.py form.ui
希望这有帮助!