From a2a64146b0483235e23b1791a04a55a53e397737 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 13 Mar 2023 13:27:57 +0000 Subject: [PATCH] docs: installation info also added to start page of the documentation. --- pyerrors/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pyerrors/__init__.py b/pyerrors/__init__.py index b82eb7f8..a692023c 100644 --- a/pyerrors/__init__.py +++ b/pyerrors/__init__.py @@ -23,6 +23,19 @@ where applicable. There exist similar publicly available implementations of gamma method error analysis suites in [Fortran](https://gitlab.ift.uam-csic.es/alberto/aderrors), [Julia](https://gitlab.ift.uam-csic.es/alberto/aderrors.jl) and [Python](https://github.com/mbruno46/pyobs). +## Installation + +Install the most recent release using pip and [pypi](https://pypi.org/project/pyerrors/): +```bash +pip install pyerrors # Fresh install +pip install -U pyerrors # Update +``` +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 +``` + ## Basic example ```python