Install VTK with anaconda 3.6

一曲冷凌霜 提交于 2019-12-01 23:54:43

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

I don't have ubuntu to try, but is seems that you are using a channel that does support linux https://anaconda.org/menpo/vtk/files (for python 2.7, 3.4, 3.5)

Do you need that specific python, openssl and xz version? Otherwise create a new enviroment and let anaconda sort out the version compatibility

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

or if you want to be more specific:

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

or (if you are fine with python 2 and vtk 6 you can use the vtk package from the conda distribution)

conda install -n envC vtk python=2 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!