Search code examples
condaanaconda3

Cannot set up a conda environment with python 3.10


I am trying to set up a conda environment with python 3.10 installed. For some reason, no install commands for additional packages are working. For example, if I run conda install pandas, I get the error:

PackagesNotFoundError: The following packages are not available from current channels:

  - python=3.1

conda install -c conda-forge pandas doesn't work either. Not sure what the problem is.


Solution

  • Thats a bug in conda, you can read more about it here: https://github.com/conda/conda/issues/10969

    Right now there is a PR to fix it but its not a released version. For now, just stick with

    conda install python=3.9