mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-29 06:35:48 -04:00
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:
parent
ea74bf0e4a
commit
d8dc09e315
1 changed files with 10 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue