在安装VTK时遇到以上错误,出错原因为VTK版本与python版本不一致,更改与python对应版本即可。
查看python版本命令:
虚拟环境下激活python (V_env)>python
Python 3.7.13 (default, Mar 28 2022, 03:01:27) [MSC v.1916 32 bit (Intel)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print(sys.version)
3.7.13 (default, Mar 28 2022, 03:01:27) [MSC v.1916 32 bit (Intel)]
另外,附vtk安装包下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#vtk。页面内Ctrl+F搜索vtk可以快速定位到vtk安装包连接,选择对应的版本即可下载。
下载好对应的版本以后,在conda中激活虚拟环境,输入安装代码即可。
(虚拟环境)>pip install ****.whl
在输入安装指令时,有一个小技巧,可以将VTK安装包选中,拖至install空格后,即可直接输入VTK安装包的地址。
以上是VTK安装方法,安装错误及相应解决办法。如有错误,请指正,谢谢。
参考:
whl is not a supported wheel on this platform.解决办法_做个好男人!的博客-CSDN博客
【2021新教程】解决is not a supported wheel on this platform-解决pip has no attribute pep425tags-解决网上旧教程不适用的问题_Lukea11的博客-CSDN博客