# python-qt5
**Repository Path**: hardcool/python-qt5
## Basic Information
- **Project Name**: python-qt5
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: GPL-3.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-03-14
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## 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