Peter Bradley a écrit :
Two people (Laurent and Andreas) kindly pointed out that I need to run
configure.py, and say that this file is in the Python directory...

I have Python installed in C:\Python25.  There is no configure.py in
that tree at all.

  
<----------------- it is in QScintilla-1.73-gpl-2.1\Python directory!!


The only files called configure.py that I can find are in the QScintilla
download.  Is that what I'm looking for?  Is it in the right place?

  

Yeeeeeess in QScintilla-1.73-gpl-2.1\Python ;)
Your near the end ;)
I'm also a bit puzzled by references to sip.  I see that there is a
sub-folder in the QScintilla download.  Was it (sip) installed when I
compiled and installed QScintilla?  Or do I have to do something else?

  
I think (I'm not sure) that qscintilla binding use sip to wrap C++ or C qscintilla into python module.
So you need sip to build qscintilla python module.
1) you buil the Qscintilla C library
2) you build sip
4) you build with sip the pyqt that will also know after that qsintilla C library
3) sip helps you then also to build python qscintilla build
5) well you install eric :) that will use pyqt

Perhaps I've done a mistake in my previous mail
4 is before 5 ;)
Sorry if I'm sounding terminally thick, but I'm a bit confused by all this.


  

Was also before a complete successfull build ;)
Peter


_______________________________________________
Eric mailing list
[email protected]
http://www.riverbankcomputing.com/mailman/listinfo/eric


  
Chcek QScintilla-1.73-gpl-2.1\Python

and also check this:

To build and install QScintilla, run:

    cd Qt4         <---------- it is in Qscintilla directory
    qmake qscintilla.pro
    make
    make install

On Windows (and depending on the compiler you are using) you may need to run nmake rather than make. If you have built a Windows DLL then you probably also want to run:

    copy %QTDIR%\lib\qscintilla.dll %QTDIR%\bin

2)
Build pyqt

3)

Python Bindings

The Python bindings are in the Python directory. You must have either PyQt v3 or v4 already installed. QScintilla must also already be built and installed.

The configure, build and install the bindings, run:

python configure.py <----------------- it is in QScintilla-1.73-gpl-2.1\Python directory!!
make
make install

On Windows (and depending on the compiler you are using) you may need to run nmake rather than make.

By default the bindings will be built for PyQt v4 if it is installed. If not, they will be built against PyQt v3. If you have both installed and want to build against PyQt v3 then pass -p 3 as an argument to configure.py.

configure.py supports a number of other arguments. Pass -h to display a list of the supported arguments.


Laurent

_______________________________________________
Eric mailing list
[email protected]
http://www.riverbankcomputing.com/mailman/listinfo/eric

Reply via email to