|
|
| (One intermediate revision by one other user not shown) |
| Line 1: |
Line 1: |
| {{delete|reason=PySide is obsolete.}}
| | #REDIRECT [[PySide Downloads]] |
| [[Category:LanguageBindings::PySide]]
| |
| | |
| = PySide Downloads =
| |
| | |
| Both [[PySide]] source and binary packages for all supported platforms are available from the [https://pypi.python.org/pypi/PySide Python Package Index (PyPI)]. Thanks to this, PySide can be downloaded and installed using `pip` installer.
| |
| | |
| <code>
| |
| pip install pyside
| |
| </code>
| |
| | |
| These files are also available from official Qt Downloads server.
| |
| | |
| * [https://download.qt.io/official_releases/pyside/ Official Qt Project Releases]
| |
| | |
| == Binaries ==
| |
| | |
| Binaries for the the following platforms are available.
| |
| | |
| * [[PySide_Binaries_Linux|Linux]]
| |
| * [[PySide_Binaries_Windows|Microsoft Windows]]
| |
| * [[PySide_Binaries_MacOSX|Mac OS X]]
| |
| * [[PySide_Binaries_Maemo|Maemo]]
| |
| * [[PySide_Binaries_MeeGo|MeeGo]]
| |
| | |
| == Source code ==
| |
| | |
| The source code for latest PySide release can be downloaded from the links below or [https://pypi.python.org/pypi/PySide PyPI]
| |
| | |
| *[http://download.qt.io/official_releases/pyside/shiboken-1.2.2.tar.bz2 shiboken-1.2.2.tar.bz2]
| |
| * [http://download.qt.io/official_releases/pyside/pyside-qt4.8+1.2.2.tar.bz2 pyside-qt4.8+1.2.2.tar.bz2]
| |
| * [https://github.com/PySide/Tools/archive/0.2.15.tar.gz pyside-tools-0.2.15.tar.gz]
| |
| | |
| Alternatively, you can get the latest source code from our git repository at [http://codereview.qt.io/ Qt Project's Gerrit code review tool] or from the read-only mirrors at [http://qt.gitorious.org/pyside qt.gitorious.org]. See details in the [[Building_PySide|Building Pyside]] page.
| |
| | |
| The old repositories from pre-Qt era can be found from [http://qt.gitorious.org/pyside qt.gitorious.org] with -archive added to the repository names.
| |
| | |
| Build instructions can be found in the [[Building_PySide|Building PySide]] page and [[PySideDevelopment|PySide Development]].
| |
| | |
| = PySide Test =
| |
| | |
| To check if PySide in installed correctly just enter a python console and type:
| |
| <code>
| |
| import PySide
| |
| </code>
| |
| | |
| If no error is returned, you have successfully installed PySide, and can start developing with Qt and Python.
| |
| You can also check the version of your PySide installation:
| |
| <code>
| |
| PySide.__version__
| |
| </code>
| |