Skip to content

Instantly share code, notes, and snippets.

@jcayzac
Last active October 4, 2024 01:00
Show Gist options
  • Save jcayzac/8e5f34d8d10692bfde16762e3a736fc0 to your computer and use it in GitHub Desktop.
Save jcayzac/8e5f34d8d10692bfde16762e3a736fc0 to your computer and use it in GitHub Desktop.

Setting up Miniconda with Conda Forge to avoid licensing issues

brew install miniconda
conda config --remove channels defaults
conda config --add channels conda-forge
conda config --set channel_priority strict

Before changing the config, these are the default channels:

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

After the config change:

https://conda.anaconda.org/conda-forge/osx-arm64
https://conda.anaconda.org/conda-forge/noarch

Problem solved. We're not using any anaconda.com channel anymore and thus don't need to pay any licensing fee. anaconda.org channels are free and open source.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment