From 1349554dfd1f5c34523b5277427bb5f75f744125 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Tue, 12 Jan 2021 14:31:08 -0600 Subject: [PATCH] Update installation instruction for Arch (#490) * Update installation instruction for Arch The package is now available in the official repository. * Add pacman command example * Add an additional empty line --- docs/source/install.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index e4717a42..74c12865 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -13,9 +13,13 @@ Using Pipenv $ pipenv install aiogram -Using AUR +Using Pacman --------- -*aiogram* is also available in Arch User Repository, so you can install this framework on any Arch-based distribution like ArchLinux, Antergos, Manjaro, etc. To do this, use your favorite AUR-helper and install the `python-aiogram `_ package. +*aiogram* is also available in Arch Linux Repository, so you can install this framework on any Arch-based distribution like Arch Linux, Antergos, Manjaro, etc. To do this, just use pacman to install the `python-aiogram `_ package: + + .. code-block:: bash + + $ pacman -S python-aiogram From sources ------------