wxPython 2.8.10.1

Stuff that has yet to be sorted into a category.
Post Reply
Message
Author
User avatar
neurino
Posts: 362
Joined: Thu 15 Oct 2009, 13:08

wxPython 2.8.10.1

#1 Post by neurino »

Hi, this evening I compiled from source my first "not straightforwad" library: the latest wxpython module (for python 2.5 at the moment)

I worked with a live puppy on a USB-key and wx source on another so I could wipe all away on errors (tip, the only important thing to do following wx build instructions is we definitively DON'T want to use OpenGL so remove --with-opengl flag from .configure etc etc)

It all worked and demos run great (not ALL tho), see screenshot.

Now I'd like to make a PET, to share too, maybe with my python2.5 PET too (it has no tk but really don't need it)

I read I must do make then

Code: Select all

new2dir make install
but wx install instructions are for 3 packages grouped this way in a .make file:

Code: Select all

make $* \
    && make -C contrib/src/gizmos $* \
    && make -C contrib/src/stc $*
then call

Code: Select all

.make
.make install
so can I do something like this?

Code: Select all

.make
new2dir .make install
Moreover, after after .make install we're only half the way, python setup is needed:

Code: Select all

python2.5 setup.py build_ext --inplace --debug WX_CONFIG=/mnt/sde1/wx/2.8/bin/wx-config BUILD_GLCANVAS=0
Can I anyway use, after that, dir2pet? Would it work???

Thanks for support, I'd be happy to make available the PET to all but haven't so much time to experiment.

Post Reply