linux libwx_gtk2u_html

Hi,
please what does that mean, what did I do wrong? Build, install everything went ok. Thanks
Petr

Traceback (most recent call last):
  File "matlex.py", line 21, in ?
    import wx
  File "/usr/lib/python2.3/site-packages/wx/__init__.py", line 19, in ?
    from wx.core import *
  File "/usr/lib/python2.3/site-packages/wx/core.py", line 4, in ?
    import _core
ImportError: libwx_gtk2u_html-2.5.so.1: cannot open shared object file: No such file or directory

Petr Simon wrote:

Hi,
please what does that mean, what did I do wrong? Build, install everything went ok. Thanks
Petr

Traceback (most recent call last):
File "matlex.py", line 21, in ?
   import wx
File "/usr/lib/python2.3/site-packages/wx/__init__.py", line 19, in ?
   from wx.core import *
File "/usr/lib/python2.3/site-packages/wx/core.py", line 4, in ?
   import _core
ImportError: libwx_gtk2u_html-2.5.so.1: cannot open shared object file: No such file or directory

If wxWidgets got installed to a standard lib directoy then you need to run ldconfig. If somewhere else then you need to set LD_LIBRARY_PATH to include wxWidgets' lib dir.

···

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

Robin Dunn wrote:

Petr Simon wrote:

Hi,
please what does that mean, what did I do wrong? Build, install everything went ok. Thanks
Petr

Traceback (most recent call last):
File "matlex.py", line 21, in ?
   import wx
File "/usr/lib/python2.3/site-packages/wx/__init__.py", line 19, in ?
   from wx.core import *
File "/usr/lib/python2.3/site-packages/wx/core.py", line 4, in ?
   import _core
ImportError: libwx_gtk2u_html-2.5.so.1: cannot open shared object file: No such file or directory

If wxWidgets got installed to a standard lib directoy then you need to run ldconfig. If somewhere else then you need to set LD_LIBRARY_PATH to include wxWidgets' lib dir.

Sorry, my mistalke forgot to set rpath when compiling, thanks