mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-15 03:53:41 +02:00
Merge branch 'develop' into documentation
This commit is contained in:
commit
c5bfb0862a
3 changed files with 22 additions and 4 deletions
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
name: Bug report
|
||||
description: Report a bug.
|
||||
title: "BUG:"
|
||||
title: "<insert title>"
|
||||
labels: [bug]
|
||||
|
||||
body:
|
||||
|
|
11
README.md
11
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
|
||||
```
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue