Skip to content

Commit ab9df18

Browse files
committedFeb 9, 2015
Updated README to 5.4
1 parent ee9aeb6 commit ab9df18

File tree

1 file changed

+2
-22
lines changed

1 file changed

+2
-22
lines changed
 

‎README.md

+2-22
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,9 @@
33
[![Build Status][travis]][travis_repo]
44
[![PyPI version][pypi]][pypi_repo]
55

6-
### Preface
7-
8-
The goal of this project is to supply PyQt via PyPI, and that's what it does, but currently only for:
9-
10-
- Python 2.7 x64
11-
- Windows 7+
12-
- PyQt5 5.3.2 compiled using Qt 5.3.1.
13-
14-
If you require alternative versions, [contact me][mail] or submit an issue and we'll talk about it.
15-
16-
> Note that these packages are not provided by Riverbank Computing Limited. Please do not contact them if you require help with them.
17-
18-
> Also note that this build is **64-bit** and thus requires a 64-bit build of Python. You are probably already running one.
19-
206
### Installation
217

22-
First, make sure you have the Visual Studio C++ 2013 redistributable, available [here][redist]. Then go ahead and install it, like this:
23-
248
```bash
25-
# To install
269
$ pip install python-qt5
2710
```
2811

@@ -36,14 +19,11 @@ $ pip install python-qt5
3619
>>> from PyQt5 import QtWidgets
3720
>>> app = QtWidgets.QApplication(sys.argv)
3821
>>> button = QtWidgets.QPushButton("Hello")
22+
>>> button.setFixedSize(400, 400)
3923
>>> button.show()
4024
```
4125

42-
### FAQ
43-
44-
> ImportError: DLL load failed: The specified module could not be found.
45-
46-
This may be due to the Visual Studio C++ 2013 redistributable not being installed. Make sure you install this, and then restart Python.
26+
- More information in the [Wiki](https://github.com/pyqt/python-qt5/wiki)
4727

4828
[travis]: https://travis-ci.org/pyqt/python-qt5.svg?branch=master
4929
[travis_repo]: https://travis-ci.org/pyqt/python-qt5

0 commit comments

Comments
 (0)
Failed to load comments.