Difference between revisions of "Mamba"

From UFRC
Jump to navigation Jump to search
(Created page with "Category:SoftwareCategory:Package Manager {|<!--CONFIGURATION: REQUIRED--> |{{#vardefine:app|mamba}} |{{#vardefine:url|https://github.com/mamba-org/mamba}} <!--CONFIGU...")
 
Line 5: Line 5:
 
<!--CONFIGURATION: OPTIONAL (|1}} means it's ON)-->
 
<!--CONFIGURATION: OPTIONAL (|1}} means it's ON)-->
 
|{{#vardefine:conf|}}          <!--CONFIGURATION-->
 
|{{#vardefine:conf|}}          <!--CONFIGURATION-->
|{{#vardefine:exe|}}            <!--ADDITIONAL INFO-->
+
|{{#vardefine:exe|1}}            <!--ADDITIONAL INFO-->
 
|{{#vardefine:job|}}            <!--JOB SCRIPTS-->
 
|{{#vardefine:job|}}            <!--JOB SCRIPTS-->
 
|{{#vardefine:policy|}}        <!--POLICY-->
 
|{{#vardefine:policy|}}        <!--POLICY-->
Line 19: Line 19:
  
 
The Fast Cross-Platform Package Manager Based on Conda.
 
The Fast Cross-Platform Package Manager Based on Conda.
 +
  
 
<!--Modules-->
 
<!--Modules-->
Line 34: Line 35:
 
{{#if: {{#var: exe}}|==Additional Information==
 
{{#if: {{#var: exe}}|==Additional Information==
  
WRITE_ADDITIONAL_INSTRUCTIONS_ON_RUNNING_THE_SOFTWARE_IF_NECESSARY
+
Here's an example conda/mamba configuration:
 +
 
 +
<pre>
 +
channels:
 +
  - conda-forge
 +
  - bioconda
 +
  - defaults
 +
  - https://repo.anaconda.com/pkgs/main
 +
  - https://repo.anaconda.com/pkgs/free
 +
pkgs_dirs:
 +
  - ${HOME}/.conda/pkgs
 +
auto_activate_base: false
 +
anaconda_upload: false
 +
</pre>
 +
 
 +
Change the pkgs_dirs value to set a different location for the conda/mamba package cache and avoid filling up your home directory.
  
 
|}}
 
|}}

Revision as of 20:37, 22 February 2021

Description

mamba website  

The Fast Cross-Platform Package Manager Based on Conda.


Environment Modules

Run module spider mamba to find out what environment modules are available for this application.

System Variables

  • HPC_MAMBA_DIR - installation directory
  • HPC_MAMBA_BIN - executable directory


Additional Information

Here's an example conda/mamba configuration:

channels:
  - conda-forge
  - bioconda
  - defaults
  - https://repo.anaconda.com/pkgs/main
  - https://repo.anaconda.com/pkgs/free
pkgs_dirs:
  - ${HOME}/.conda/pkgs
auto_activate_base: false
anaconda_upload: false

Change the pkgs_dirs value to set a different location for the conda/mamba package cache and avoid filling up your home directory.