[wxPython] /wxc.so: undefined symbol: SeekI__13wxInputStreamx10wxSeekMode

Hi,

I have just build and installed wxPython-2.3.2.1 on SuSE8.0.
However python demo.py fails

python demo.py
Traceback (most recent call last):
  File "demo.py", line 3, in ?
    import Main
  File "Main.py", line 15, in ?
    from wxPython.wx import *
  File "/usr/lib/python2.2/site-packages/wxPython/__init__.py", line 20, in ?
    import wxc
ImportError: /usr/lib/python2.2/site-packages/wxPython/wxc.so: undefined symbol: SeekI__13wxInputStreamx10wxSeekMode

What can I do ?

Thanks in advance.

                   Nils

I have just build and installed wxPython-2.3.2.1 on SuSE8.0.
However python demo.py fails

python demo.py
Traceback (most recent call last):
  File "demo.py", line 3, in ?
    import Main
  File "Main.py", line 15, in ?
    from wxPython.wx import *
  File "/usr/lib/python2.2/site-packages/wxPython/__init__.py", line 20,

in ?

    import wxc
ImportError: /usr/lib/python2.2/site-packages/wxPython/wxc.so: undefined

symbol: SeekI__13wxInputStreamx10wxSeekMode

What can I do ?

http://lists.wxwindows.org/pipermail/wxpython-users/2002-January/009529.html
http://lists.wxwindows.org/pipermail/wxpython-users/2002-January/009584.html

Also, see the NOTE: in 2-D in
http://cvs.wxwindows.org/cgi-bin/viewcvs.cgi/wxPython/BUILD.unix.txt?rev=1.5
&content-type=text/vnd.viewcvs-markup

···

--
Robin Dunn
Software Craftsman
robin@AllDunn.com Java give you jitters?
http://wxPython.org Relax with wxPython!

Hi All,
I wrote a small utility for my personal use using Python for Windows. Now
my superior wants me to distibute it to a few desktops. Do I need to install
python on these desktops or can I distribute some kind of runtime with my
app?

Thanks.

Christopher Seymour

I wrote a small utility for my personal use using Python for Windows. Now
my superior wants me to distibute it to a few desktops. Do I need to

install

python on these desktops or can I distribute some kind of runtime with my
app?

Look in the list archives for examples of using py2exe and/or McMillan's
Installer.

···

--
Robin Dunn
Software Craftsman
robin@AllDunn.com Java give you jitters?
http://wxPython.org Relax with wxPython!

Hi,

Robin Dunn wrote:

Look in the list archives for examples of using py2exe and/or
McMillan's Installer.

The latter is really good... I wonder if there's some way to get a
tree of all needed python & wxPython files but *don't* package them
into an exacutable? I'd like to ship an app in source form so that it
can be modified by the user, but I don't want to include all these
Python modules I never use...

Vaclav

Vaclav Slavik wrote:

Hi,

Robin Dunn wrote:

Look in the list archives for examples of using py2exe and/or
McMillan's Installer.

The latter is really good... I wonder if there's some way to get a tree of all needed python & wxPython files but *don't* package them into an exacutable? I'd like to ship an app in source form so that it can be modified by the user, but I don't want to include all these Python modules I never use...

Vaclav

You can unpack executable or look at TOC files.

HTH
Niki Spahiev