-
Notifications
You must be signed in to change notification settings - Fork 80
Compiling PyQt5 on Ubuntu 12.04
mottosso edited this page Nov 8, 2014
·
21 revisions
This guide provides basic instructions on getting PyQt5 compiled on Ubuntu 12.04 x64 for Python 2.7
- Make sure you use Qt 5.3.1, and not 5.3.2 as it is not yet supported.
- Install Dependencies
$ sudo apt-add-repository ppa:ubuntu-sdk-team/ppa
$ sudo apt-get update
$ sudo apt-get install qtdeclarative5-dev
- Compile SIP
$ cd sip-*
$ python configure.py
# --qmake: Tell compiler about location of Qt binaries
# --sip-incdir: Tell compiler about location of SIP
$ cd ../PyQt5*
$ python configure.py --qmake ~/Qt/5.3/gcc_64/bin/qmake --sip-incdir ../sip-*/siplib
Welcome to the wiki for PyQt5 using Python 2.7. For Python 3.4, head here
Table of contents
Developer Resources
Compilation Instructions