在Sublime Text中运行PyQt5,您可以按照以下步骤进行操作:
import sys
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel
if __name__ == '__main__':
app = QApplication(sys.argv)
window = QMainWindow()
window.setWindowTitle('PyQt5 Example')
label = QLabel('Hello, PyQt5!', window)
window.setGeometry(100, 100, 300, 200)
window.show()
sys.exit(app.exec_())
请注意,以上步骤假设您已经正确安装了Python和Sublime Text,并且已经配置了正确的环境变量。如果您遇到任何问题,请参考相关文档或搜索解决方案。
领取专属 10元无门槛券
手把手带您无忧上云