Mayavi doesn't run from within Spyder: complains about “ValueError: API 'QString' …”
I am unable to run/use Mayavi library from within Spyder IDE. I have described the problem below. Any help will be very useful. (Thank you very much in advance.) Steps to reproduce the problem: Just importing the Mayavi library in a script (for example using "import mayavi.mlab as mlab") and executing the script will reproduce this problem. I am including a test code (note that this code is an example code from the Mayavi website) here to reproduce the problem: code from numpy import sin, cos, mgrid import mayavi.mlab as mmlab def f(x,y): return sin(x + y) + sin(2*x - y) + cos(3*x + 4*y) x,y =