Getting wxPython to work with PythonCE 2.4

I upgraded my PDA to PythonCE 2.4, so now I can't get wxPython to run. I
have probably done something stupid. After installing PythonCE 2.4 and
confirming that it runs, I copied the wx folder from its location in the
python234 hierarchy (\Program Files\Python234\Lib) to the analogous
location under Python24. I can run python and import wx, but when I try

x = wx.Frame(None)

or

x = wx.PySimpleApp()

I get the message that 'module' object has no attribute
'Frame'/'PySimpleApp'.

···

--
Jeffrey Barish

This shouldn't work. If wxPython was linked against Python 2.3, trying
to run it with Python 2.4 should throw various nasty errors; likely
beyond what you are currently experiencing.

Seems likely that your current problem is caused by forgetting to copy
over the wx.pth file (if it exists).

- Josiah

···

Jeffrey Barish <jeff_barish@earthlink.net> wrote:

I upgraded my PDA to PythonCE 2.4, so now I can't get wxPython to run. I
have probably done something stupid. After installing PythonCE 2.4 and
confirming that it runs, I copied the wx folder from its location in the
python234 hierarchy (\Program Files\Python234\Lib) to the analogous
location under Python24. I can run python and import wx, but when I try