From 504f014939dc301be24cf2d7fc57458b47feb336 Mon Sep 17 00:00:00 2001 From: pkk Date: Sun, 3 Jan 2016 00:42:01 +0000 Subject: [PATCH] pyqt5 bindings --- pyqt/README.md | 45 ++++++++++++++++++++++++++++----------------- 1 file changed, 28 insertions(+), 17 deletions(-) diff --git a/pyqt/README.md b/pyqt/README.md index b3995ce..71e8758 100644 --- a/pyqt/README.md +++ b/pyqt/README.md @@ -1,23 +1,34 @@ -PyQt4 Bindings for QTermWidget +PyQt5 Bindings for QTermWidget +============================== -By Piotr "Riklaunim" Maliński , - Alexander Slesarev -PyQt4 QTermWidget Bindings License: GPL3 +INSTALL: +------------ +####1. Download QTermWidget -> https://github.com/lxde/qtermwidget + +####2. Compile and install it: + $ mkdir build && cd build + $ cmake .. + $ make + $ sudo make install +If `make install` command will not work just copy the `qtermwidget.so*` files to /usr/lib directory. +####3. Install PyQt5 and PyQt5-devel if not yet installed. +####4. Configure, compile and install bindings. Execute in terminal in the qtermwidget bindings folder: -INSTALL: -1. Download QTermWidget from http://qtermwidget.sourceforge.net/. -2. Compile and install it: - $ cmake . - $ make - $ sudo make install -If `make install` command will not work just copy the qtermwidget.so* files to /usr/lib directory. -3. Install PyQt4 and PyQt4-devel if not yet installed. -4. Configure, compile and install bindings. Execute in terminal in the qtermwidget bindings folder: + $ python config.py + $ make + $ sudo make install -$ python config.py -$ make -$ sudo make install +####5. You can run ./test.py to test the installed module. -5. You can run ./test.py to test the installed module. + +ABOUT: +--------- +Based on previous PyQt4 bindings by: +- Piotr "Riklaunim" Maliński , +- Alexander Slesarev + + +PyQt5 QTermWidget Bindings +License: GPL3