From c61fabd301575fce55f458c842eb507b7c43fa12 Mon Sep 17 00:00:00 2001 From: abejgonzalez Date: Tue, 11 Jul 2023 16:27:51 -0700 Subject: [PATCH] 'Force' users to install libmamba --- docs/Chipyard-Basics/Initial-Repo-Setup.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/Chipyard-Basics/Initial-Repo-Setup.rst b/docs/Chipyard-Basics/Initial-Repo-Setup.rst index af57d6da..cee859d0 100644 --- a/docs/Chipyard-Basics/Initial-Repo-Setup.rst +++ b/docs/Chipyard-Basics/Initial-Repo-Setup.rst @@ -34,6 +34,13 @@ After Conda is installed and is on your ``PATH``, we need to install a version o For this you can use the system package manager like ``yum`` or ``apt`` to install ``git``. This ``git`` is only used to first checkout the repository, we will later install a newer version of ``git`` with Conda. +Next, we install `libmamba `__ for much faster dependency solving when initially setting up the repository. + +.. code-block:: shell + + conda install -n base conda-libmamba-solver + conda config --set solver libmamba + Finally we need to install ``conda-lock`` into the ``base`` conda environment. This is done by the following: @@ -42,7 +49,6 @@ This is done by the following: conda install -n base conda-lock=1.4 conda activate base -.. Note:: We also recommended switching to `libmamba `__ for much faster dependency solving. Setting up the Chipyard Repo -------------------------------------------