Conda Reports Packagesnotfounderror: Python=3.1 for Reticulate Environment

PyTorch installation asks for python=3.1 . Python Version installed: 3.10.0

Conda 4.10 is incompatible with python 3.10.

The reason you cannot install many packages with conda is that conda 4.10 has a known bug handling python 3.10. Update your conda to 4.11 or revert your python to 3.9 or older. Read more here in this SO answer.

As a workaround, you can still try to use pip.

Why can't I install matplotlib or pandas with pip OR miniconda?

Try creating a new environment and installing matplotlib and numpy in it directly as follows:

conda create --new env_nick python=3.8 numpy matplotlib

Then, activate the environment as

conda activate env_nick

Your python version is old and incompatible with some of the updated packages.



Related Topics



Leave a reply



Submit