From c10bb0b033ad9a68271e9f0f45684942f0cf4d12 Mon Sep 17 00:00:00 2001 From: IAlibay Date: Fri, 29 Dec 2023 02:21:52 +0000 Subject: [PATCH] Add conda install instructions --- docs/source/getting_started.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.rst index 0e0fb48..f0c629f 100644 --- a/docs/source/getting_started.rst +++ b/docs/source/getting_started.rst @@ -6,6 +6,23 @@ This page details how to get started with PathSimAnalysis. Installation ------------ +Conda / Mamba +------------- + +You can install `pathsimanalysis from the conda-forge channel `_ with: + +.. code-block:: sh + + conda install -c conda-forge pathsimanalysis + + +or alternatively with :program:`mamba` if you have it installed: + +.. code-block:: sh + + mamba install -c conda-forge pathsimanalysis + + PyPi ~~~~