ImportError: no module named Qsci while ninja-ide running

I am trying to install and run ninja-ide http://ninja-ide.org/home/

However, when I try to run ninja-ide, I encountered this error

ImportError: No module named Qsci 

I try to install ninja-ide all night.

I tried everything that I installed from the source, installing using the apt-get dependencies mentioned in different blogs.

I installed everything. SIP, PyQt4, Qscintilla, all kinds of dependencies.

I created symbolic links for the python installation folder in /usr/local/include/python2.7 since python was installed in /usr/include/python2.7 .

I even copied the Qsci folder from /usr/include/qt4 to /usr/lib/python2.7/dist-packages/PyQt4 and /usr/local/lib/python2.7/dist-packages/PyQt4 .

I'm tired of installing everything. I still can't understand why he gives me

 ImportError: No module named Qsci 

I cleaned google and qaru all night.

+5
source share
2 answers

You need to install: Python-qscintilla2

In addition, the version that requires this is the version still under development, and not the official version.

+8
source

install it

 Sudo apt-get install python-qscintilla2 
0
source

Source: https://habr.com/ru/post/1203909/


All Articles