Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Use mamba instead of conda #5891

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/source/intro/install_conda.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ If you want to install AiiDA onto you own personal workstation/laptop, it is rec

.. grid-item-card:: Install prerequisite services + AiiDA (core)

*Install all required services and the aiida-core package in a Conda environment.*
*Install the aiida-core package and all required services in a Conda environment.*

#. Make sure that conda is installed, e.g., by following `the instructions on installing Miniconda <https://docs.conda.io/en/latest/miniconda.html>`__.
#. We strongly recommend using ``mamba`` instead of the default ``conda`` (or environment resolution may time out).
Consider using `Mambaforge <https://github.com/conda-forge/miniforge#mambaforge>`_ when starting from scratch, or ``conda install -c conda-forge mamba``.

#. Open a terminal and execute:

.. code-block:: console

$ conda create -n aiida -c conda-forge aiida-core aiida-core.services
$ conda activate aiida
$ mamba create -n aiida -c conda-forge aiida-core aiida-core.services
$ mamba activate aiida

.. grid-item-card:: Start-up services and initialize data storage

Expand Down