ConDB Client Installation ========================= There are 2 ways to install the ConDB client. In both cases, you will need to have `psycopg2 `_ installed. PyPi isntallation ----------------- .. code-block:: shell $ pip install --user condb Installation from github ------------------------ .. code-block:: shell $ git clone https://github.com/ivmfnal/condb2 $ cd condb2 $ python setup.py install --user Once the client is installed, ConDB library module will be available as ``condb``: .. code-block:: python from condb import ConDB, ConDBClient ...