How to install QtSvg, QtWebKit, QtWebKitWidgets (all in Qt5 version) on ubuntu 14.04?

I want to install eric6-6.0.6. Result

python3 install.py 

is an:

 Checking dependencies Python Version: 3.4.0 Found PyQt5 Found QScintilla2 Found QtGui Found QtNetwork Found QtPrintSupport Found QtSql Sorry, please install QtSvg. Error: No module named 'PyQt5.QtSvg' Sorry, please install QtWebKit. Error: No module named 'PyQt5.QtWebKit' Sorry, please install QtWebKitWidgets. Error: No module named 'PyQt5.QtWebKitWidgets' Found QtWidgets 

But how to install the missing? I have a lot of google but cannot find the correct answer.

Can anyone do me a favor?

Thank you so much!

+7
python qt qt5
source share
1 answer

You can install all these packages with

 sudo apt-get install <package> 

I do not have the ubuntu distribution installed right now, so I can not confirm it, but I do not think that you will need to install the third package.

Packages:

libqt5webkit5-dev

For python-3.x:

python3-pyqt5.qtsvg

python3-pyqt5.qtwebkit

+11
source share

All Articles