I need to install VTK and mayavi on Ubuntu 16. I have Anaconda with Python 3.6. If I run:
conda install -c menpo vtk=7.0.0 vtk
I get:
Fetching package metadata ...........
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
- python 3.6*
- vtk 7.0.0* -> python 3.5* -> openssl 1.0.1*
- vtk 7.0.0* -> python 3.5* -> xz 5.0.5
Use "conda info " to see the dependencies for each package.
Apparently, I need Anaconda with Python3.5, but it's not availabe. Any idea? :)
解决方案
You can also use this: https://anaconda.org/clinicalgraphics/vtk
The VTK is the 7.1.0 ones and was built to python 3.6 ;D
EDIT: Nowadays the anaconda repository has the latest version (8.1.1)
The code to do that is:
conda install -c anaconda vtk