walterbehrnes Posted September 19, 2008 Share Posted September 19, 2008 Hi Guys! I am trying to get wxPython 2.8 to work on Suse 10.1 with Houdini 9.5.170 I build the ANSI version of wx and then copying it to the houdini python directory ( as it is layed out in the 3dBuzz tutorial) but I keep getting the error below when I try to import wx. Has anyone had this issue before and been able to resolve it??? Any help would be greatly appreciated. Thanks! Walter /opt/houdini_9.5/python/lib/python2.5/site-packages/wx/_core_.so: undefined symbol: _ZTI10wxListBase If I do a show details I get this: Traceback (most recent call last): File "wxtest", line 1, in <module> File "/opt/houdini_9.5/python/lib/python2.5/site-packages/wx/__init__.py", line 45, in <module> from wx._core import * File "/opt/houdini_9.5/python/lib/python2.5/site-packages/wx/_core.py", line 4, in <module> import _core_ ImportError: /opt/houdini_9.5/python/lib/python2.5/site-packages/wx/_core_.so: undefined symbol: _ZTI10wxListBase Quote Link to comment Share on other sites More sharing options...
walterbehrnes Posted September 19, 2008 Author Share Posted September 19, 2008 Figured out the error... I fixed it by adding: setenv PATH "/opt/wx/2.8.8/bin:$PATH" setenv LD_LIBRARY_PATH "/opt/wx/2.8.8/lib" to my path... Now I get this error: >>> import wx Traceback (most recent call last): File "<console>", line 1, in <module> File "wx/__init__.py", line 45, in <module> File "wx/_core.py", line 4, in <module> ImportError: /opt/hfs9.5.170/python/lib/python2.5/site-packages/wx/_core_.so: undefined symbol: Py_InitModule4 >>> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.