All Projects → pyqt → Python Qt5

pyqt / Python Qt5

Licence: gpl-3.0
Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows

Labels

Projects that are alternatives of or similar to Python Qt5

Qml Rust
QML (Qt Quick) bindings for Rust language
Stars: ✭ 196 (-20%)
Mutual labels:  qml
Stackoverflow
my answers in Stack Overflow
Stars: ✭ 211 (-13.88%)
Mutual labels:  qml
Qml Box2d
Box2D QML plugin
Stars: ✭ 223 (-8.98%)
Mutual labels:  qml
Qml Creative Controls
QML controls for creative applications and creative coding
Stars: ✭ 199 (-18.78%)
Mutual labels:  qml
Brig
User Interface Toolkits for Node.js
Stars: ✭ 208 (-15.1%)
Mutual labels:  qml
Sortfilterproxymodel
A nicely exposed QSortFilterProxyModel for QML
Stars: ✭ 214 (-12.65%)
Mutual labels:  qml
Asyncfuture
Use QFuture like a Promise object
Stars: ✭ 193 (-21.22%)
Mutual labels:  qml
Ssokit Qmake
A Simple & Strong Tool for TCP&UDP Debug
Stars: ✭ 231 (-5.71%)
Mutual labels:  qml
Qtfirebase
An effort to bring Google's Firebase C++ API to Qt + QML
Stars: ✭ 208 (-15.1%)
Mutual labels:  qml
Noson App
The essential to control music from your SONOS devices on Linux platforms
Stars: ✭ 219 (-10.61%)
Mutual labels:  qml
Projecteur
Linux Desktop Application for the Logitech Spotlight device (and similar devices) - Digital Laser Pointer
Stars: ✭ 199 (-18.78%)
Mutual labels:  qml
Qtmvvm
A mvvm oriented library for Qt, to create Projects for Widgets and Quick in parallel
Stars: ✭ 205 (-16.33%)
Mutual labels:  qml
Plasma Applet Eventcalendar
Stars: ✭ 217 (-11.43%)
Mutual labels:  qml
Vodka
VOFA+ Plugins
Stars: ✭ 198 (-19.18%)
Mutual labels:  qml
Cool Retro Term
A good looking terminal emulator which mimics the old cathode display...
Stars: ✭ 15,532 (+6239.59%)
Mutual labels:  qml
Qml Coding Guide
A collection of good practices when writing QML code
Stars: ✭ 196 (-20%)
Mutual labels:  qml
Qml Material
📖 Material Design implemented in QtQuick
Stars: ✭ 2,443 (+897.14%)
Mutual labels:  qml
Qgis Resources
Collection of QGIS resources featured on my blog
Stars: ✭ 237 (-3.27%)
Mutual labels:  qml
Quickvtk
A VTK prototyping application based on QtQuick/QML
Stars: ✭ 228 (-6.94%)
Mutual labels:  qml
Quickandroid
QML Theme and Component Library for Android
Stars: ✭ 217 (-11.43%)
Mutual labels:  qml

Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows

Build status PyPI version




A) Install with pip and git

With this approach, you get version 5.7.1

$ pip install git+git://github.com/pyqt/python-qt5.git

B) Or install with just pip

With this approach, you only get 5.3 due to space restrictions on PyPI.

$ pip install python-qt5

C) Or install with just git




Testing out the installation

  1. Launch Python
  2. Type this in
>>> import sys
>>> from PyQt5 import QtWidgets
>>> app = QtWidgets.QApplication(sys.argv)
>>> button = QtWidgets.QPushButton("Hello")
>>> button.setFixedSize(400, 400)
>>> button.show()
>>> app.exec_()
  • More information in the Wiki
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].