mamba create -n opemnc actually still uses conda install, so updated to make it two different steps to avoid failure

This commit is contained in:
Kalin Kiesling 2022-05-12 13:29:00 -05:00
parent ea74bf0e4a
commit d8dc09e315

View file

@ -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