Installing Taxadb

Taxadb requires python >= 3.5 to work. Taxadb can work with SQLite, PostgreSQL and MySQL. By default Taxadb works with SQLite as it comes with modern Python distributions.

Using pip

To install taxadb, simply type one of the following in a terminal:

pip install taxadb

Installing taxadb with PostgreSQL and/or MySQL support

pip install .[postgres, mysql] taxadb

This should install psycopg2 and PyMySQL Python packages

From github

If you wish to install taxadb from github, you can do the following

git clone https://github.com/HadrienG/taxadb.git
cd taxadb
python setup.py install

Installing Taxadb for PostgreSQL and/or MySQL

git clone https://github.com/HadrienG/taxadb.git
cd taxadb
pip install psycopg2 PyMySQL
python setup.py install