mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
65 lines
1.7 KiB
ReStructuredText
65 lines
1.7 KiB
ReStructuredText
Installation Guide
|
|
==================
|
|
|
|
Using PIP
|
|
---------
|
|
.. code-block:: bash
|
|
|
|
$ 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 <https://aur.archlinux.org/packages/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 stable version (The same with version form PyPi):
|
|
|
|
.. code-block:: bash
|
|
|
|
$ git clone https://github.com/aiogram/aiogram.git
|
|
$ cd aiogram
|
|
$ git checkout master
|
|
$ python setup.py install
|
|
|
|
|
|
Recommendations
|
|
---------------
|
|
You can speedup your bots by following next instructions:
|
|
|
|
- Use `uvloop <https://github.com/MagicStack/uvloop>`_ instead of default asyncio loop.
|
|
|
|
*uvloop* is a fast, drop-in replacement of the built-in asyncio event loop. uvloop is implemented in Cython and uses libuv under the hood.
|
|
|
|
**Installation:**
|
|
|
|
.. code-block:: bash
|
|
|
|
$ pip install uvloop
|
|
|
|
- Use `ujson <https://github.com/esnme/ultrajson>`_ instead of default json module.
|
|
|
|
*UltraJSON* is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.5+ and 3.
|
|
|
|
**Installation:**
|
|
|
|
.. code-block:: bash
|
|
|
|
$ pip install ujson
|
|
|
|
In addition, you don't need do nothing, *aiogram* is automatically starts using that if is found in your environment.
|