>> Installation :


  1. Open a terminal.


  2. Go into your Django project or start your virtual environment if you've got one :

    Example :

> cd my_projects/my_django_project



  1. Execute :
> pip install bulb-core

or if it doesn't work :

> python -m pip install bulb-core



  1. To check if everything works, open the terminal and go in your virtual environment if you've got one. Then, run the python shell of your Django project and try to import the bulb package :
(my_env) > python manage.py shell
Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:57:15) [MSC v.1915 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> import bulb
>>>

If there's no error message, everything's fine.