1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
Installing PyQt
===============
Downloading SIP
---------------
SIP must be installed before building and using PyQt. You can get the latest
release of the SIP source code from
http://www.riverbankcomputing.com/software/sip/download.
The SIP documentation can be found at
http://www.riverbankcomputing.com/static/Docs/sip4/index.html.
Downloading PyQt
----------------
You can get the latest release of the GPL version of the PyQt source code from
http://www.riverbankcomputing.com/software/pyqt/download.
If you are using the commercial version of PyQt then you should use the
download instructions which were sent to you when you made your purchase. You
must also download your license file.
Configuring PyQt
----------------
After unpacking the source package (either a ``.tar.gz`` or a ``.zip`` file
depending on your platform) you should then check for any :file:`README` files
that relate to your platform.
If you are using the commercial version of PyQt then you must copy your
license file to the :file:`sip` directory.
You need to make sure your environment variables are set properly for your
development environment. For example, if you are using a binary distribution
of Qt on Windows then make sure you have run the :file:`qtvars.bat` file. For
other platforms it is normally enough to ensure that Qt's :file:`bin` directory
is on your :envvar:`PATH`.
Next you need to configure SIP by executing the :program:`configure.py` script.
For example::
python configure.py
This assumes that the Python interpreter is on your path. Something like the
following may be appropriate on Windows::
c:\python32\python configure.py
If you have multiple versions of Python installed then make sure you use the
interpreter for which you wish to build PyQt for.
The full set of command line options is:
.. program:: configure.py
.. cmdoption:: --version
Display the PyQt version number.
.. cmdoption:: -h, --help
Display a help message.
.. cmdoption:: --confirm-license
Using this confirms that you accept the terms of the PyQt license.
.. cmdoption:: -k, --static
The PyQt modules will be built as static libraries. This is useful when
building a custom interpreter with the PyQt modules built in to the
interpreter.
.. cmdoption:: --no-docstrings
The PyQt modules will not contain automatically generated docstrings.
.. cmdoption:: -r, --trace
The generated PyQt modules contain additional tracing code that is enabled
using SIP's :func:`sip.settracemask` function.
.. cmdoption:: -u, --debug
The PyQt modules will be built with debugging symbols. On Windows this
requires that a debug version of Python is installed.
.. cmdoption:: -w, --verbose
Compiler commands and any output issued during configuration is displayed
instead of being suppressed. Use this if :program:`configure.py` is having
problems to see what exactly is going wrong.
.. cmdoption:: -c, --concatenate
The C++ source files for a Python module will be concatenated. This
results in significantly reduced compilation times. Most, but not all,
C++ compilers can handle the large files that result. See also the
:option:`--concatenate-split <-j>` option.
.. cmdoption:: -j <N>, --concatenate-split <N>
If the :option:`--concatenate <-c>` option is used to concatenate the C++
source files then this option determines how many files are created. The
default is 1.
.. cmdoption:: --assume-shared
Normally Qt is checked to see if it has been built as shared libraries.
Some Linux distributions configure their Qt builds to make this check
unreliable. This option ignores the result of the check and assumes that
Qt has been built as shared libraries.
.. cmdoption:: -g, --consolidate
Normally each PyQt module (except for the :mod:`~PyQt4.Qt` module) is
linked against the corresponding Qt library. This option creates a module
called :mod:`~PyQt4._qt` which is linked against all the required Qt
libraries and the other modules are stub modules that populate their module
dictionaries from this one. This is useful when linking against static Qt
libraries to eliminate the need to distribute the Qt libraries while
minimising the memory footprint of the PyQt modules.
.. cmdoption:: -e <MODULE>, --enable <MODULE>
Normally all PyQt4 modules are enabled and are built if the corresponding
Qt library can be found. Using this option only those modules specifically
enabled will be checked for and built. The option may be specified any
number of times.
.. cmdoption:: -t <PLUGIN>, --plugin <PLUGIN>
If Qt has been built as static libraries then the static plugin
``<PLUGIN>`` will be linked with the appropriate PyQt module. The option
may be specified any number of times.
.. cmdoption:: -T, --no-timestamp
Normally the header comments of each generated C/C++ source file includes
a timestamp corresponding to when the file was generated. This option
suppresses the inclusion of the timestamp.
.. cmdoption:: -q <FILE>, --qmake <FILE>
Qt's :program:`qmake` program is used to determine how your Qt installation
is laid out. Normally :program:`qmake` is found on your :envvar:`PATH`.
This option can be used to specify a particular instance of
:program:`qmake` to use. This option is not available on Windows.
.. cmdoption:: -s <DIR>, --dbus <DIR>
The :file:`dbus-python.h` header file of the dbus-python package can be
found in the directory ``<DIR>/dbus``.
.. cmdoption:: -b <DIR>, --bindir <DIR>
The :program:`pyuic4`, :program:`pyrcc4` and :program:`pylupdate4`
utilities will be installed in the directory ``<DIR>``.
.. cmdoption:: -d <DIR>, --destdir <DIR>
The PyQt Python package will be installed in the directory ``<DIR>``. The
default is the Python installation's :file:`site-packages` directory. If
you use this option then the :envvar:`PYTHONPATH` environment variable must
include ``<DIR>``.
.. cmdoption:: -p <DIR>, --plugin-destdir <DIR>
The Qt Designer plugin that manages plugins implemented in Python will be
installed in the :file:`designer` subdirectory of the directory ``<DIR>``.
.. cmdoption:: --no-designer-plugin
The Qt Designer plugin will not be built.
.. cmdoption:: --no-sip-files
The ``.sip`` files for the PyQt modules will not be installed.
.. cmdoption:: -v <DIR>, --sipdir <DIR>
The ``.sip`` files for the PyQt modules will be installed in the directory
``<DIR>``.
.. cmdoption:: --use-arch <ARCH>
When :program:`pyuic4` calls the Python interpreter on MacOS it will be run
using the architecture ``<ARCH>``. See the section :ref:`ref-macos`.
.. cmdoption:: --protected-is-public
On certain platforms the size of PyQt modules can be significantly reduced
by redefining the C++ ``protected`` keyword as ``public`` during
compilation. This option enables this behaviour and is the default on
Linux and MacOS/X.
.. cmdoption:: --protected-not-public
The default redefinition of ``protected`` to ``public`` during compilation
on Linux and MacOS/X is disabled.
.. cmdoption:: -i, --vendorid
The checking of signed Python interpreters using the `VendorID
<http://www.riverbankcomputing.com/software/vendorid/>`__ package is
enabled. See also the :option:`--vendorid-incdir <-l>` and
:option:`--vendorid-libdir <-m>` options and :ref:`ref-deploy-commercial`.
.. cmdoption:: -l <DIR>, --vendorid-incdir <DIR>
The header file of the VendorID package can be found in the directory
``<DIR>``.
.. cmdoption:: -m <DIR>, --vendorid-libdir <DIR>
The library of the VendorID package can be found in the directory
``<DIR>``.
.. cmdoption:: -a, --qsci-api
The :file:`PyQt4.api` QScintilla API file is installed even if QScintilla
does not appear to be installed. This option is implied if the
:option:`--qsci-api-destdir <-n>` option is specified.
.. cmdoption:: --no-qsci-api
The :file:`PyQt4.api` QScintilla API file is not installed even if
QScintilla does appear to be installed.
.. cmdoption:: -n <DIR>, --qsci-api-destdir <DIR>
The QScintilla API file will be installed in the :file:`python`
subdirectory of the :file:`api` subdirectory of the directory ``<DIR>``.
.. _ref-macos:
Configuring SIP and PyQt for MacOS
----------------------------------
Building applications for MacOS can be a complex process. Typically the
following need to be taken into account:
- the architectures (i.e. i386, x86_64, ppc) that you want to support
- the earliest version of MacOS you want to support (i.e. the deployment
target)
- the version of the SDK you want to use.
If you are using a binary installer for Python and/or Qt then you also need to
consider how they have been built regarding the above, and what bugs they have.
SIP's and PyQt's :program:`configure.py` scripts provide the necessary command
line options to allow the correct configurations to be specified - the trick is
to work out which options to use depending on the versions of Python and Qt you
have installed.
SIP provides the following command line options to its :program:`configure.py`
script.
- ``--arch <ARCH>`` specifies the target architecture and may be specified a
number of times.
- ``--universal`` is a shortcut for ``--arch i386 --arch ppc``.
- ``--deployment-target <VERSION>`` specifies the earliest version of MacOS you
want to support. This sets the :envvar:`MACOSX_DEPLOYMENT_TARGET`
environment variable and should be used rather than setting the environment
variable in the shell (to work around bugs in some versions of Python).
- ``--sdk <SDK>`` specifies the SDK to use.
PyQt provides the :option:`--use-arch <configure.py --use-arch>` option that
specifies which architecture certain PyQt tools (actually only
:program:`pyuic4` at the moment) will use when running Python. For example, if
your Qt installation is 32 bits, and your Python installation is 32 bits and
64 bits then you will need to specify ``--use-arch i386`` to ensure that
:program:`pyuic4` runs the 32 bit version of Python.
Building PyQt
-------------
The next step is to build PyQt by running your platform's :program:`make`
command. For example::
make
The final step is to install PyQt by running the following command::
make install
(Depending on your system you may require root or administrator privileges.)
This will install the various PyQt components.
|