8

I want to install eric6-6.0.6.The result of

python3 install.py

is:

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 google a lot but fail to find the correct answer.

Anyone could do me a favor?

Thanks a lot!

Zieng
  • 453
  • 1
  • 7
  • 17

1 Answers1

13

You can install these packages all with

sudo apt-get install <package>

I don't have an ubuntu distro set up right now, so I can't verify for you, but I don't think you'll need to install the third package.

Packages:

libqt5webkit5-dev

For python-3.x:

python3-pyqt5.qtsvg

python3-pyqt5.qtwebkit

Mazdak
  • 105,000
  • 18
  • 159
  • 188
Luke
  • 431
  • 1
  • 4
  • 15
  • 1
    If I install these packages,I will change the sip package,then I will met the following problem while install eric6: including the following traceback, to eric-bugs@eric-ide.python-projects.org. Traceback (most recent call last): File "install.py", line 1548, in main(sys.argv) File "install.py", line 1451, in main doDependancyChecks() File "install.py", line 1077, in doDependancyChecks from PyQt5 import Qsci # __IGNORE_WARNING__ RuntimeError: the sip module implements API v11.0 but the PyQt5.Qsci module requires API v11.1 – Zieng Jun 10 '15 at 00:30
  • http://stackoverflow.com/questions/22569388/cant-import-modules-in-python-pyqt4-conflicts-with-sip What OS are you running? – Luke Jun 11 '15 at 13:06