Installation guide

DriverPower requires Python >= 3.5 and some other computing packages. If you don’t have Python 3.5 or higher, we recommend to install Python with Anaconda.

Install from pypi

You can install DriverPower from the Python Package Index (PyPI) by simply typing the following command in your terminal:

$ pip install driverpower

Important

DriverPower requires XGBoost for building gradient boosting machines. pip may not install XGBoost correctly especially for OS X owing to C++ compiler issue. See XGBoost installation guides for more information.

Install from source

You can also download the latest source from GitHub to install. For example, to install version 1.0.0:

$ tar -xzf DriverPower-1.0.0.tar.gz
$ cd DriverPower-1.0.0/ && pip install .

See the importance note above if you have issue with the XGBoost installation.