ConDB Client Installation

There are 2 ways to install the ConDB client. In both cases, you will need to have psycopg2 installed.

PyPi isntallation

$ pip install --user condb

Installation from github

$ 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:

from condb import ConDB, ConDBClient
...