Install Guide

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


Install Electrogram

  • The easiest way to install and upgrade Electrogram to its latest stable version is by using pip:

    $ pip3 install electrogram
    

Verifying

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