1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
(installation)=
# Installation of pontos
## Requirements
Python 3.9 and later is supported.
## Using pip
pip 19.0 or later is required.
You can install the latest stable release of **pontos** from the Python
Package Index (pypi) using [pip](https://pip.pypa.io/en/stable/)
```shell
python3 -m pip install --user pontos
```
## Using poetry
Because **pontos** is a Python library you most likely need a tool to
handle Python package dependencies and Python environments. Therefore we
strongly recommend using [poetry](https://python-poetry.org/).
You can install the latest stable release of **pontos** and add it as
a dependency for your current project using [poetry](https://python-poetry.org/)
```shell
poetry add pontos
```
|