From 34981b6102d4cd8af74f5bdf3cae7b992634041c Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 13 Mar 2023 13:25:24 +0000 Subject: [PATCH] docs: conda-forge installation added to README. --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc9bcef1..50f388b6 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,17 @@ - **Bug reports:** https://github.com/fjosw/pyerrors/issues ## Installation -To install the most recent release (via [pypi](https://pypi.org/project/pyerrors/)) run +Install the most recent release using pip and [pypi](https://pypi.org/project/pyerrors/): ```bash pip install pyerrors # Fresh install -pip install -U pyerrors # Upgrade +pip install -U pyerrors # Update ``` -to install the current `develop` version run +Install the most recent release using conda and [conda-forge](https://anaconda.org/conda-forge/pyerrors): +```bash +conda install -c conda-forge pyerrors # Fresh install +conda update -c conda-forge pyerrors # Update +``` +Install the current `develop` version: ```bash pip install git+https://github.com/fjosw/pyerrors.git@develop ```