Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Loading Mamba module
Use the
ml av Mamba
command to see which version of Mamba is available on the LANTA HPC system.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 | ||
---|---|---|
| ||
|
...
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 |