I want to use Mayavi.
virtualenv
installed.
Your pip
is probably using a different python
, kind of you have vtk
installed using /usr/local/bin/python
, while your pip
binary uses /usr/bin/python
.
Check it:
$ head -n1 $(which pip)
In order to get it solved, you can choose to use a virtualenv
, or install pip
using /usr/local/bin/python
:
curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | /usr/local/bin/python
For more installation instructions, see http://www.pip-installer.org/en/latest/installing.html