2018-01-06 11:18:15 +00:00
|
|
|
Quick Installation
|
|
|
|
==================
|
|
|
|
|
2018-04-15 18:56:06 +00:00
|
|
|
- The easiest way to install and upgrade Pyrogram is by using **pip**:
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-04-15 18:56:06 +00:00
|
|
|
.. code-block:: bash
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-04-15 18:56:06 +00:00
|
|
|
$ pip3 install --upgrade pyrogram
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-04-15 18:56:06 +00:00
|
|
|
- or, with TgCrypto_ (recommended):
|
2018-04-11 21:18:17 +00:00
|
|
|
|
2018-04-15 18:56:06 +00:00
|
|
|
.. code-block:: bash
|
2018-04-11 21:18:17 +00:00
|
|
|
|
2018-04-15 18:56:06 +00:00
|
|
|
$ pip3 install --upgrade pyrogram[tgcrypto]
|
2018-04-11 21:18:17 +00:00
|
|
|
|
2018-01-06 11:18:15 +00:00
|
|
|
Bleeding Edge
|
|
|
|
-------------
|
|
|
|
|
2018-03-25 18:40:50 +00:00
|
|
|
If you want the latest development version of the library, you can install it with:
|
2018-01-06 11:18:15 +00:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2018-02-27 17:15:37 +00:00
|
|
|
$ pip3 install --upgrade git+https://github.com/pyrogram/pyrogram.git
|
2018-01-06 11:18:15 +00:00
|
|
|
|
|
|
|
Verifying
|
|
|
|
---------
|
|
|
|
|
2018-04-13 08:01:08 +00:00
|
|
|
To verify that Pyrogram is correctly installed, open a Python shell and import it.
|
2018-03-30 18:08:18 +00:00
|
|
|
If no error shows up you are good to go.
|
2018-01-06 11:18:15 +00:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
>>> import pyrogram
|
|
|
|
>>> pyrogram.__version__
|
2018-05-12 12:16:36 +00:00
|
|
|
'0.7.4'
|
2018-02-17 15:25:05 +00:00
|
|
|
|
|
|
|
.. _TgCrypto: https://docs.pyrogram.ml/resources/TgCrypto
|