pyrofork/docs/source/intro/install.rst
wulan17 bec44280a4
PyroFork: Rebrand docs
Signed-off-by: wulan17 <galihgustip@gmail.com>
2023-01-02 15:49:05 +07:00

41 lines
1 KiB
ReStructuredText

Install Guide
=============
Being a modern Python framework, PyroFork requires an up to date version of Python to be installed in your system.
We recommend using the latest versions of both Python 3 and pip.
.. contents:: Contents
:backlinks: none
:depth: 1
:local:
-----
Install PyroFork
----------------
- The easiest way to install and upgrade PyroFork to its latest stable version is by using **pip**:
.. code-block:: text
$ pip3 install -U git+https://github.com/Mayuri-Chan/pyrofork@dev/pyrofork
- or, with :doc:`TgCrypto <../topics/speedups>` as extra requirement (recommended):
.. code-block:: text
$ pip3 install -U git+https://github.com/Mayuri-Chan/pyrofork@dev/pyrofork tgcrypto
Verifying
---------
To verify that PyroFork is correctly installed, open a Python shell and import it.
If no error shows up you are good to go.
.. parsed-literal::
>>> import pyrogram
>>> pyrogram.__version__
'x.y.z'
.. _`Github repo`: https://github.com/Mayuri-Chan/pyrofork