My goal is to use Mayavi in Python on Heroku. Therefore I tried to install it using pip in a virtual environment:
virtualenv venv --distribute
source venv/bin/activate
pip install "Mayavi[app]"
This exited with the error
ImportError: No module named numpy
so clearly the dependencies are not installed. I can of course do
pip install Numpy
but then the Mayavi installer exits with
ImportError: No module named vtk
I have tried running the Enthought installation script as well from http://code.enthought.com/source/ but it also gets the vtk import error. Building VTK from source requires CMake, which isn't available on Heroku.
So, any ideas on how to get Mayavi or VTK installed without using sudo and only (available) tools you are allowed to use on Heroku?