All,

PEBKAC (disregard previous post)

I went back and cleaned PyQt, and wa-la.

Apologies!  Appending the steps I took to get eric4 installed on snow leopard.

Doug

------
1. Install Qt4
    http://ftp3.ie.freebsd.org/pub/trolltech/pub/qt/source/
    - binary: qt-mac-cocoa-opensource-4.6.3.dmg
    - or source: qt-everywhere-opensource-src-4.6.3.tar.gz

    either install from the .dmg or
    from archive dir
        $ ./configure -arch x86_64 -opensource
        $ make cleanconf
        $ make clean
        $ make
        $ sudo make install  (this should install qmake somewhere like
/usr/local/Trolltech/Qt-4.6.3/bin)

2. Modify your path so you can run qmake:
        $ edit ~/.profile for PATH
        export PATH=/usr/local/Trolltech/Qt-4.6.3/bin:$PATH
    $ . ~/.profile  (src the file to update the PATH)

3. Test the install:
        $ open ~/Downloads/Qt-4.6.3/bin/qtdemo.app

4. Build and install sip:
        http://www.riverbankcomputing.com/software/sip/download
        - sip-4.10.5.tar.gz
        
        from archive dir:
                $ python configure.py --arch x86_64
                $ make clean
                $ make
                $ sudo make install

5. Build and install QScintilla2
        http://www.riverbankcomputing.com/software/qscintilla/download
        - QScintilla-gpl-2.4.4.tar.gz   
        
        from archive dir:
                $ cd Qt4
                $ qmake qscintilla.pro
                $ make clean
                $ make
                $ sudo make install

6. Build and install PyQt4:
        http://www.riverbankcomputing.com/software/pyqt/download
        - PyQt-mac-gpl-4.7.4.tar.gz
        
        from archive dir:
                $ python configure.py
                $ make clean
                $ make
                $ sudo make install

7. Test the install:
        $ python ~/Downloads/PyQt-mac-gpl-4.7.4/examples/demos/qtdemo/qtdemo.py

8. Build and install QScintilla2 Python bindings
        from archive dir:
                $ cd Python
                $ python configure.py
                $ make clean
                $ make
                $ sudo make install

9. Install eric4:
        from archive dir:
                $ sudo python install.py
_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to