I installed Ninja-Ide a simple Python IDE, but when I try starting it from the KDE menu nothing happens. When I start it from the command line, I get the following information which leads me to believe that there is a missing dependency. What would be the fix?
Code:
mowestusa@HP-G62:~$ ninja-ide Traceback (most recent call last): File "/usr/bin/ninja-ide", line 34, in <module> ninja_ide.setup_and_run() File "/usr/lib/python2.7/dist-packages/ninja_ide/__init__.py", line 71, in setup_and_run core.run_ninja() File "/usr/lib/python2.7/dist-packages/ninja_ide/core/core.py", line 48, in run_ninja from ninja_ide.gui import ide File "/usr/lib/python2.7/dist-packages/ninja_ide/gui/ide.py", line 45, in <module> from ninja_ide.core import plugin_services File "/usr/lib/python2.7/dist-packages/ninja_ide/core/plugin_services.py", line 29, in <module> from ninja_ide.gui.main_panel import main_container File "/usr/lib/python2.7/dist-packages/ninja_ide/gui/main_panel/main_container.py", line 36, in <module> from ninja_ide.gui.main_panel import tab_widget File "/usr/lib/python2.7/dist-packages/ninja_ide/gui/main_panel/tab_widget.py", line 40, in <module> from ninja_ide.gui.main_panel import browser_widget File "/usr/lib/python2.7/dist-packages/ninja_ide/gui/main_panel/browser_widget.py", line 27, in <module> from PyQt4.QtWebKit import QWebView ImportError: No module named QtWebKit
Comment