Install VTK with anaconda 3.6

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 <package>" to see the dependencies for each package.

Apparently I need Anaconda with Python3.5, but it is not available. Any ideas?:)

+2
source share
2 answers

You can also use this: https://anaconda.org/clinicalgraphics/vtk VTK is 7.1.0 and was built for Python 3.6; D

EDIT: the anaconda repository currently has the latest version (8.1.1)

Code for this:

conda install -c anaconda vtk
+5
source

ubuntu, , , , linux https://anaconda.org/menpo/vtk/files ( python 2.7, 3.4, 3.5)

python, openssl xz? anaconda

conda install -n envA -c menpo vtk=7 python=3 

:

conda install -n envB -c menpo vtk=7 python=3.5 

( python 2 vtk 6, vtk conda)

conda install -n envC vtk python=2 
+4

Source: https://habr.com/ru/post/1625868/


All Articles