From 9610c698bea3d073ff17b91f6aa3d959166aabe1 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Mon, 14 Oct 2019 16:11:13 +0300 Subject: [PATCH] Update installation docs page --- docs/source/install.rst | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index cd89dc54..d8d591c1 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -7,25 +7,34 @@ Using PIP $ pip install -U aiogram +Using Pipenv +------------ + .. code-block:: bash + + $ pipenv install aiogram + Using AUR --------- *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 `_ package. From sources ------------ + + Development versions: + .. code-block:: bash $ git clone https://github.com/aiogram/aiogram.git $ cd aiogram $ python setup.py install - or if you want to install development version (maybe unstable): + Or if you want to install stable version (The same with version form PyPi): .. code-block:: bash $ git clone https://github.com/aiogram/aiogram.git $ cd aiogram - $ git checkout dev-2.x + $ git checkout master $ python setup.py install