Paolo Gavardi wrote: > Thank you very much for you help. Unfortunately I still have troubles. > Now the problem is in module tkinter, as you can see in the following. > Actually in /usr/lib the file libvtkRenderingPythonTkWidgets.so.5.0.4 > does exist.
Then try this as root: # cd /usr/lib # ln -s libvtkRenderingPythonTkWidgets.so.5.0.4 libvtkRenderingPythonTkWidgets.so That should fix it I hope. > $ export > PYTHONPATH="/usr/lib/python2.3/site-packages/mayavi:/usr/lib/python2.3/site-packages:/usr/lib" It is incorrect to put /usr/lib/python2.3/site-packages/mayavi in your pythonpath. There shouldn't be any need to put /usr/lib/python2.3/site-packages in your pythonpath -- it should already be there. I'm not sure you need /usr/lib there either. Try this: $ python -c "import sys; print sys.path" Just to see what paths are on your Python. HTH, cheers, prabhu ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ MayaVi-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mayavi-users
