aiogram/docs/install.md

31 lines
1 KiB
Markdown
Raw Normal View History

2019-11-15 12:17:57 +02:00
# Installation Guide
2019-11-18 00:36:12 +02:00
## Stable
### Using PIP
2019-11-15 12:17:57 +02:00
```bash
pip install -U aiogram
```
2019-11-18 00:36:12 +02:00
### Using Pipenv
2019-11-15 12:17:57 +02:00
```bash
pipenv install aiogram
```
2019-11-18 00:36:12 +02:00
### Using poetry
```bash
poetry add aiogram
```
2019-11-18 00:36:12 +02:00
### Using AUR
2019-11-15 12:17:57 +02:00
*aiogram* is also available in Arch User Repository, so you can install this library on any Arch-based distribution like ArchLinux, Antergos, Manjaro, etc. To do this, use your favorite AUR-helper and install [python-aiogram](https://aur.archlinux.org/packages/python-aiogram/) package.
2019-11-18 00:36:12 +02:00
## Development build
### From private PyPi index
On every push to the `dev-3.x` branch GitHub Actions build the package and publish to the [2038.host](https://aiogram.2038.io/simple) server with seems like official PyPi files structure. That's mean you can always install latest (may be unstable) build via next command:
```bash
pip install --extra-index-url https://aiogram.2038.io/simple --pre aiogram
```
In this repository available only last release. All previous builds is always removes before uploading new one. Also before building this package all tests is also pass.