From 56f8aaca067aaf6c4ea97e3c0243371db0e8adad Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Wed, 31 Jan 2024 17:01:19 +0000 Subject: [PATCH 1/2] added conda install cmd --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 390b26f..c263799 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,17 @@ OpenMC, Matplotlib, NumPy, PySide6 ## Installation -This package is most easily installed by running +This package is available from PyPI and Conda +To install from PyPI run the following command from the terminal. + +```console +python -m pip install openmc-plotter +``` + +Or alternativly Conda can be used to install the plotter (recommend option for Conda enviroments) ```console -pip install openmc-plotter +conda install -c conda-forge openmc-plotter ``` ## Usage From c60a31106169ab33fc1e18f585a5e2efc106739f Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 1 Feb 2024 22:37:59 -0600 Subject: [PATCH 2/2] Small fixes --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c263799..61fd2c5 100644 --- a/README.md +++ b/README.md @@ -19,15 +19,14 @@ OpenMC, Matplotlib, NumPy, PySide6 ## Installation -This package is available from PyPI and Conda - -To install from PyPI run the following command from the terminal. - +This package is available from PyPI and conda-forge. To install from PyPI run +the following command from the terminal: ```console python -m pip install openmc-plotter ``` -Or alternativly Conda can be used to install the plotter (recommend option for Conda enviroments) +Alternatively, conda can be used to install the plotter (recommended option for +conda enviroments): ```console conda install -c conda-forge openmc-plotter ```