Installation

Building from source

bulbea is actively developed on GitHub and is always avaliable.

You can clone the base repository with git as follows:

$ git clone git@github.com:achillesrasquinha/bulbea.git

Optionally, you could download the tarball or zipball as follows:

For Linux Users

$ curl -OL https://github.com/achillesrasquinha/tarball/bulbea

For Windows Users

$ curl -OL https://github.com/achillesrasquinha/zipball/bulbea

Install necessary dependencies

$ pip install -r requirements.txt

bulbea depends on Keras which thereby depends on TensorFlow as a backend. You may have to manually install TensorFlow as follows:

$ pip install tensorflow # CPU-only

OR

$ pip install tensorflow-gpu # GPU-only, requires NVIDIA CUDA and cuDNN

Then, go ahead and install bulbea in your site-packages as follows:

$ python setup.py install

Check to see if you’ve installed bulbea correctly.

>>> import bulbea as bb