To install CUBRID Python Driver using apt-get, we need to add CUBRID's repository so that Ubuntu knows where to download the packages from, and then tell the OS to update its indexes.
sudo add-apt-repository ppa:cubrid/cubrid sudo apt-get update
First install CUBRID if you did not install it beforehand:
sudo apt-get install cubrid
sudo apt-get install python-cubriddb
To test that cubrid has been succesfully installed and the python module configured open up a python terminal and run:
python import CUBRIDdb
If no error occurs, then the module has been successfully loaded.