Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

conda install -c conda-forge paraview: failed to install paraview

Failed to install paraview through conda in the base environment even though it installs fine in any newly created environments. The issue is, my spyder is present in base and can’t be installed in any other env.
it keeps trying to find a way to install but fails everytime

I need both of these in the same env to make it work. I have already added their paths to PYTHONPATH and PATH but no use.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

The issue is that paraview is a large package with a lot of dependencies. Not all of those dependencies can be satisfied while keeping the base Anaconda installation intact because the base environment already contains so many packages.

The solution is to install both spyder and paraview into a new environment.

conda create -n myenv python=3.10.* spyder paraview --channel conda-forge

To use spyder, you need to activate the new environment before running the spyder command.

conda activate myenv
spyder
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading