File: install.md

package info (click to toggle)
pontos 25.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,744 kB
  • sloc: python: 44,602; makefile: 21; sh: 10; xml: 3
file content (31 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (2)
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
```