Install VTK with anaconda 3.6

匿名 (未验证) 提交于 2019-12-03 02:31:01

问题:

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's not availabe. Any idea? :)

回答1:

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

the code to do that is: conda install -c clinicalgraphics vtk=7.1.0



回答2:

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  


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