Skip to content

Commit

Permalink
Merge pull request #121 from probabilistic-numerics/development
Browse files Browse the repository at this point in the history
Installation from PyPi
  • Loading branch information
JonathanWenger committed Jul 23, 2020
2 parents 54bf5b4 + 27fdbf1 commit 9f55a20
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ This repository aims to implement methods from PN in Python 3 and to provide a c
currently a work in progress, therefore interfaces are subject to change.

## Installation
You can install this Python 3 package using `pip` (or `pip3`):
To get started install ProbNum using :code:`pip`.
```bash
pip install git+https://github.com/probabilistic-numerics/probnum.git
pip install probnum
```
Alternatively you can clone this repository with
Alternatively, you can install the package from source.
```bash
git clone https://github.com/probabilistic-numerics/probnum
pip install probnum/.
pip install git+https://github.com/probabilistic-numerics/probnum.git
```

## Documentation and Examples
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ measures over the output of a numerical routine, which then can be propagated al
This repository aims to implement methods from PN in Python 3 and to provide a common interface for them. This is
currently a work in progress, therefore interfaces are subject to change.

To get started install ProbNum from the Python Package Index via
To get started install ProbNum using :code:`pip`.

.. code-block:: shell
pip install probnum
or if you prefer to use the latest version, install directly from Github:
Alternatively, you can install the package from source.

.. code-block:: shell
Expand Down
2 changes: 1 addition & 1 deletion docs/source/introduction/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"```bash\n",
"pip install probnum\n",
"```\n",
"If you prefer to use the latest version of ProbNum, install directly from GitHub instead.\n",
"Alternatively, you can install the package from source.\n",
"\n",
"```bash\n",
"pip install git+https://github.com/probabilistic-numerics/probnum.git\n",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ author = Jonathan Wenger
author-email = jonathan.wenger@uni-tuebingen.de
license = mit
long-description = file: README.md
long-description-content-type = text/x-rst; charset=UTF-8
long-description-content-type = text/markdown
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
Expand Down

0 comments on commit 9f55a20

Please sign in to comment.