https://github.com/pyqt/python-qt5
Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows
https://github.com/pyqt/python-qt5
Last synced: 10 months ago
JSON representation
Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows
- Host: GitHub
- URL: https://github.com/pyqt/python-qt5
- Owner: pyqt
- License: gpl-3.0
- Created: 2014-09-18T06:03:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-03-29T07:12:46.000Z (almost 4 years ago)
- Last Synced: 2024-11-21T01:41:58.543Z (about 1 year ago)
- Language: QML
- Homepage:
- Size: 285 MB
- Stars: 285
- Watchers: 20
- Forks: 79
- Open Issues: 38
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: LICENSE
Awesome Lists containing this project
README
### Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows
[](https://ci.appveyor.com/project/mottosso/python-qt5) [![PyPI version][pypi]][pypi_repo]
#### A) Install with pip and git
With this approach, you get version 5.7.1
```bash
$ 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](https://github.com/pyqt/python-qt5/issues/7).
```bash
$ pip install python-qt5
```
#### C) Or install with just git
- [See wiki](https://github.com/pyqt/python-qt5/wiki/Installation).
### Testing out the installation
1. Launch Python
2. Type this in
```python
>>> 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](https://github.com/pyqt/python-qt5/wiki)
[travis]: https://travis-ci.org/pyqt/python-qt5.svg?branch=master
[travis_repo]: https://travis-ci.org/pyqt/python-qt5
[pypi]: https://badge.fury.io/py/python-qt5.svg
[pypi_repo]: http://badge.fury.io/py/python-qt5
[redist]: http://www.microsoft.com/en-us/download/details.aspx?id=40784
[mail]: mailto:marcus@abstractfactory.io