Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.63 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.63 KB

MicroMamba.jl

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Test Status Codecov

A Julia interface to the MicroMamba package manager.

For a higher-level interface, see CondaPkg.jl.

Installation

pkg> add MicroMamba

Usage

The API consists of the following functions:

  • cmd([args]) returns a command which calls MicroMamba, optionally with given arguments.
  • executable() returns the path to a MicroMamba executable.
  • version() returns the version of this executable.
  • available() returns true if MicroMamba is available on this system. Use this to check if the above functions will succeed.

In all cases, MicroMamba will be downloaded and installed if required to a Julia-specific location.

The command returned from cmd() includes the root prefix -r argument. By default this is some Julia-specific directory, but can be over-ridden with the environment variable MAMBA_ROOT_PREFIX.

Example

The following command creates a new environment in ./env and installs Python into it.

run(MicroMamba.cmd(`create -y -p ./env python -c conda-forge`))