diff --git a/docs/source/index.rst b/docs/source/index.rst index 198a9429e..ce3c5f77e 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -15,8 +15,8 @@ OpenMC was originally developed by members of the `Computational Reactor Physics Group `_ at the `Massachusetts Institute of Technology `_ starting in 2011. Various universities, laboratories, and other organizations now contribute to the development of OpenMC. For more -information on OpenMC, feel free to send a message to the User's Group `mailing -list `_. +information on OpenMC, feel free to post a message on the `OpenMC Discourse +Forum `_. .. admonition:: Recommended publication for citing :class: tip diff --git a/docs/source/usersguide/install.rst b/docs/source/usersguide/install.rst index cbd1669fd..bc7a2214b 100644 --- a/docs/source/usersguide/install.rst +++ b/docs/source/usersguide/install.rst @@ -12,33 +12,35 @@ Installation and Configuration Installing on Linux/Mac with conda-forge ---------------------------------------- -Conda_ is an open source package management system and environment management -system for installing multiple versions of software packages and their -dependencies and switching easily between them. `conda-forge -`_ is a community-led conda channel of -installable packages. For instructions on installing conda, please consult their -`documentation -`_. - -Once you have `conda` installed on your system, add the `conda-forge` channel to -your configuration with: +`Conda `_ is an open source package management +system and environment management system for installing multiple versions of +software packages and their dependencies and switching easily between them. If +you have `conda` installed on your system, OpenMC can be installed via the +`conda-forge` channel. First, add the `conda-forge` channel with: .. code-block:: sh conda config --add channels conda-forge -Once the `conda-forge` channel has been enabled, OpenMC can then be installed -with: +To list the versions of OpenMC that are available on the `conda-forge` channel, +in your terminal window or an Anaconda Prompt run: + +.. code-block:: sh + + conda search openmc + +OpenMC can then be installed with: .. code-block:: sh - conda install openmc - -It is possible to list all of the versions of OpenMC available on your platform with: + conda create -n openmc-env openmc + +This will install OpenMC in a conda environment called `openmc-env`. To activate +the environment, run: .. code-block:: sh - conda search openmc --channel conda-forge + conda activate openmc-env .. _install_ppa: diff --git a/docs/source/usersguide/troubleshoot.rst b/docs/source/usersguide/troubleshoot.rst index 2be94f6a8..f8ec70ebd 100644 --- a/docs/source/usersguide/troubleshoot.rst +++ b/docs/source/usersguide/troubleshoot.rst @@ -31,7 +31,8 @@ on. Create a new build directory and type the following commands: Now when you re-run your problem, it should report exactly where the program failed. If after reading the debug output, you are still unsure why the program -failed, send an email to the OpenMC User's Group `mailing list`_. +failed, post a message on the `OpenMC Discourse Forum +`_. ERROR: No cross_sections.xml file was specified in settings.xml or in the OPENMC_CROSS_SECTIONS environment variable. *********************************************************************************************************************