Versions Compared

Key

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

...

Loading Mamba module

  1. Use the ml av Mamba command to see which version of Mamba is available on the LANTA HPC system.

  2. Use the ml Mamba/xx.xx.x command to load the Mamba version that you want to use. If you don't specify a version, the default version (D) is loaded, which is Mamba/23.11.0-0.

...

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

  • conda-forge

  • bioconda

...

However, if you found the URLs in this format, you need to check your user config file. To access the below channels, a 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

...

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

...

Installing package with specified channels

You can specify channels in the package installation with the -c conda-forge option command.

For example,

Code Block
username@lanta:~> ml Mamba/23.11.0-0
username@lanta:~> conda activate your_env
username@lanta:~> conda install -c conda-forge matplotlib