Installation¶
BTB can be installed in two ways:
From stable release
From source
Stable Release¶
To install BTB, run the following command in your terminal pip:
pip install baytune
This is the preffered method to install BTB, as it will always install the most recent and stable release.
If you don’t have pip installed, this Python installation guide can guide you through the process.
From source¶
The source code of BTB can be downloaded from the Github repository
You can clone the repository and install with the following command in your terminal:
git clone git://github.com/MLBazaar/BTB
cd BTB
make install
If you are installing BTB in order to modify its code, the installation must be done from its sources, in the editable mode, and also including some additional dependencies in order to be able to run the tests and build the documentation. Instructions about this process can be found in the Contributing guide.