Reputation: 61
I have Python 3.8.5
How can I install the package vtkplotter with this Python version?
Thanks a lot!
Upvotes: 3
Views: 2645
Reputation: 821
you can install it by conda
To install this package with conda run one of the following:
conda install -c conda-forge vtkplotter
conda install -c conda-forge/label/cf202003 vtkplotter
Upvotes: 0
Reputation: 382
It appears that vtkplotter
has migrated to vedo
(Link to GitHub repo with installation instructions). Maybe you are better off using vedo
for newer Python versions.
Upvotes: 4
Reputation: 8324
Use pip or conda or whatever to install your package.
If you find that a certain version of Python is not compatible with a specific version of a library, you can make a virtualenvironment with a specific python version that is compatible with the package, activate the virtual environment, and then install your package.
Upvotes: 0