PyQt on the Mac: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
m New page: PyQt is a set of bindings for Python that allow you to build applications using the QT framework. So, in theory you can build one application that runs on any platform that supports Python...
 
Brian Wilson (talk | contribs)
mNo edit summary
Line 3: Line 3:
There is no binary installer for Macintosh.
There is no binary installer for Macintosh.


First you have to build and install SIP
First you have to build and install '''SIP'''. SIP is a tool for creating C/C++ bindings.


Then you have to build and install PyQT.
Then you have to build and install '''PyQT'''.


Sources for both are at [http://www.riverbankcomputing.co.uk/software/ Riverbank]
Sources for both are at [http://www.riverbankcomputing.co.uk/software/ Riverbank]

Revision as of 02:48, 17 May 2010

PyQt is a set of bindings for Python that allow you to build applications using the QT framework. So, in theory you can build one application that runs on any platform that supports Python and QT. This includes Macintosh, Linux, and Windows.

There is no binary installer for Macintosh.

First you have to build and install SIP. SIP is a tool for creating C/C++ bindings.

Then you have to build and install PyQT.

Sources for both are at Riverbank