Skip to content

Install

Anyioutils can be installed through PyPI or conda-forge.

With pip

pip install anyioutils

With micromamba

We recommend using micromamba to manage conda-forge environments (see micromamba's installation instructions). First create an environment, here called my-env, and activate it:

micromamba create -n my-env
micromamba activate my-env
Then install anyioutils.

micromamba install anyioutils

Development install

You first need to clone the repository:

git clone https://github.com/davidbrochart/anyioutils
cd anyioutils
We recommend working in a conda environment. In order to build anyioutils, you will need pip:
micromamba create -n anyioutils-dev
micromamba activate anyioutils-dev
micromamba install pip
Then install anyioutils in editable mode:
pip install -e ".[test,docs]"