I try to install vtk from pypi but failed as following:
$ python -V
Python 3.8.3
$ pip install vtk
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement vtk (from versions: none)
ERROR: No matching distribution found for vtk
I had the same problem - I was trying to install this from within a venv python environment. I fixed this by installing it as a system library, and then rebuilding my venv space with the --system-site-packages option.
I see that there is also a pip library vext.vtk that may allow you to retro-actively add it to a venv environment.
I had the same problem - I was trying to install this from within a venv python environment. I fixed this by installing it as a system library, and then rebuilding my venv space with the --system-site-packages option.
See here for more details on the reason for this problem:
I see that there is also a pip library vext.vtk that may allow you to retro-actively add it to a venv environment.