From d8dc09e3153a860523134b566a3a1ec728948fc2 Mon Sep 17 00:00:00 2001 From: Kalin Kiesling Date: Thu, 12 May 2022 13:29:00 -0500 Subject: [PATCH] mamba create -n opemnc actually still uses conda install, so updated to make it two different steps to avoid failure --- docs/source/quickinstall.rst | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/source/quickinstall.rst b/docs/source/quickinstall.rst index cd848d395f..57ff2b479d 100644 --- a/docs/source/quickinstall.rst +++ b/docs/source/quickinstall.rst @@ -34,20 +34,22 @@ in your terminal window or an Anaconda Prompt run: .. code-block:: sh - conda search openmc + mamba search openmc + +First create and activate a new conda enviroment called `openmc-env` in which to install OpenMC. + +.. code-block:: sh + + conda create -n openmc-env + conda activate openmc-env OpenMC can then be installed with: .. code-block:: sh - mamba create -n openmc-env openmc + mamba install openmc -This will install OpenMC in a conda environment called `openmc-env`. To activate -the environment, run: - -.. code-block:: sh - - conda activate openmc-env +You are now in a conda environment called `openmc-env` that has OpenMC installed. .. note:: If you are already familiar with conda for package management, please note that OpenMC is currently only supported to be installed