=================================================
*)Python被誉为人工智能御用脚本语言 ....
*)PyQT 可以设计UI界面,具有跨系统平台特性 ...
*)逻辑执行者是python这个底层程序,py脚本是让底层执行程序界面化通过指令式显化 ...
*)只要精通2门编程语言,其他的语言的接入技能都是浮云 ...
=================================================
本文为在windows系统下开发MainWindow
>1. 下载安装 PyCharm (community edition) 安装Anaconda3/python3
>2.下载安装PyQT5 for python3 (32bit/64bit)
>3. 打开Qt designer.exe ; 选择一个MainWindow界面设计
>4.拖动一些按钮,文本等控件到UI设计区
>5.保存ui文件, 如test.ui
>6.ui文件转换,打开cmd终端输入
pyuic5 X:\Your_Py_Ui_filePath\test.ui > d:\output.py
其中 X:\Your_Py_Ui_filePaths是你实际保存test.ui的文件全路径;
输出路径我们暂时选择d:\output.py
>7.用PyCharm软件或者记事本打开output.py 在文件末尾追加以下内容并保存
class MyWindow(QtWidgets.QMainWindow, Ui_MainWindow):
def __init__(self):
super(MyWindow, self).__init__()
self.setupUi(self)
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
myshow = MyWindow()
myshow.show()
sys.exit(app.exec_())
其中Ui_MainWindow是你刚开始保存的那个py文件上的类名.
>8.在cmd终端上运行 python output.py
>9.第一个Python可视化PC软件完成!
>10.Windows可以通过pyinstaller或者py2exe 将刚才的py文件转成exe独立可执行的pc程序.
代码细节请参考:
https://www.jianshu.com/p/388dfff981bd?nomobile=yes
https://blog.csdn.net/a359680405/article/details/45167373