views:

885

answers:

1

Is the combination of Python 3 and PyQt 4 recommended? Are there any alternatives?

+4  A: 

I don't see why not, there is a version available for Python 3 which works normally, and the only alternative if you really need Qt would be PySide, which is far from being compatible with Python 3.

Other GUI alternatives would be wxPython (not in Python 3 yet AFAIK) and the "native" Tkinter (which is something else...).

RedGlyph