Install Guide¶
Being a modern Python framework, PyroRatnaGram 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
Install PyroRatnaGram¶
The easiest way to install and upgrade PyroRatnaGram to its latest stable version is by using pip:
$ pip3 install -U pyroratnagramor, with TgCrypto as extra requirement (recommended):
$ pip3 install -U pyroratnagram tgcrypto
Bleeding Edge¶
You can install the development version from the git master branch using this command:
$ pip3 install -U https://github.com/AnmolRatna25/pyroratnagram/archive/master.zip
Verifying¶
To verify that PyroRatnaGram is correctly installed, open a Python shell and import it. If no error shows up you are good to go.
>>> import pyrogram
>>> pyrogram.__version__
'x.y.z'