您知道在 Qt Creator 中集成 PySide/PyQt 开发的任何努力吗?
我希望仅使用 QtCreator 在 python 中进行编程。我已经使用 QtCreator 向本科生教授 GUI 编程,他们很喜欢它。我们已经多次讨论过切换到 python 的可能性,但由于缺乏一个好的 IDE 来开发 PySide/PyQt 应用程序,我们没有这样做。
I would love to program in python using only QtCreator. I have already used QtCreator to teach GUI programming to undergraduate students and they loved it. We have discussed several times the possibility of switching to python, but the lack of a good IDE to develop PySide/PyQt applications has refrained us to do so.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 https://github.com/PySide/QtCreator
Have a look at https://github.com/PySide/QtCreator
我认为这完全取决于你在开发 Qt 程序时如何对待 Qt Creator。 Qt Creator 有很多很酷的东西,但如果我们专注于两个主要部分:代码编辑器和代码编辑器。 UI设计师,这种情况更容易实现。
我认为将 UI Designer 部分与 PyQt 一起使用并将编辑器的任务放在其他事情上会更容易。您可以查看使用 PyQt 和 Qt Designer 创建 GUI 应用程序。
I think it all depends on how you treat Qt Creator while you are developing Qt programs. There are lots of cool stuff in Qt Creator but if we focus on 2 major parts: Code Editor & UI Designer, the situation is much easier to realize.
I think it's easier to just use the UI Designer part with PyQt and put Editor's task to something else. You can check this Creating GUI Applications with PyQt and Qt Designer.