Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel6
outlinefalse
styledisc
typelist
printablefalse

Selecting the channels for package installation

In the Mamba module, you can use only the following free channels such as:

  • conda-forge

  • bioconda

Note

The channels provided by Anaconda, Inc. (default and anaconda channels) have a service fee.

...

However, if you found the URLs in this format, you need to check your user config file. To access below channels, license from Anaconda Inc. is required.

Code Block
channel URLs : https://repo.anaconda.com/pkgs/main/linux-64
               https://repo.anaconda.com/pkgs/main/noarch
               https://repo.anaconda.com/pkgs/r/linux-64
               https://repo.anaconda.com/pkgs/r/noarch

...

Note

If the default and anaconda channels are present in your user config file, kindly remove them.

Expand
titleExample
Code Block
username@lanta:~> cat /home/username/.condarc
channels:
  - conda-forge
  - bioconda
  - defaults  ## delete this line
channel_priority: strict

Package installation with specified channels

...