Install Guide

Being a modern Python framework, Pyrogram 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.


Bleeding Edge

Kurigram is conveniently available as a Python package on PyPI and can be easily installed using pip and uv.

pip install kurigram
uv add --dev kurigram

You can also install the development version from the git dev branch using this command:

pip install https://github.com/KurimuzonAkuma/kurigram/archive/dev.zip --force-reinstall

Verifying

To verify that kurigram 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'