Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.