English French [qt-devnet.developpez.com] 한국어 日本語
- Note: this article is a member of the multipart PySide_Newbie_Tutorials
Setting up PySide
Before you can work with PySide, you have to have the following installed:
Note: Microsoft Windows packages are available only in 32bits format.
You can follow the PySideDownloads to install PySide on your development machine.
To check if PySide in installed correctly just enter a python console and type:
- import PySide
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:
- import PySide
- print PySide.__version__
The result will be something like 1.0.0.

