I've been using Conda on Windows for a while. However, I recently changed to MacOS, and I think there's something I might be doing wrong.
I usually install miniconda to work with conda command only. Recently, I tried to install the Deap package for python, available on the Conda-forge channel. So, I did:
conda install -c conda-forge deap
But, I get the PackagesNotFoundError for deep. I added the channel according to conda-forge instructions. Then, I tried uninstalling miniconda following the anaconda steps. But, I can't install anaconda-clean (even though it is supposed to be available on the default channels).
I also realized that
conda create -n envName python=3.7
gives PackagesNotFoundError for python=3.7 (??).
This is from the conda info
output:
channel URLs : https://conda.anaconda.org/conda-forge/osx-arm64
https://conda.anaconda.org/conda-forge/noarch
https://repo.anaconda.com/pkgs/main/osx-arm64
https://repo.anaconda.com/pkgs/main/noarch
https://repo.anaconda.com/pkgs/r/osx-arm64
https://repo.anaconda.com/pkgs/r/noarch
How is this possible? Did I messed something up? Any ideas? Thanks!