Skip to content

Installing Python Dashboard

MatteoRenoldi edited this page Jan 8, 2020 · 1 revision

IMPORTANT: These notes have been tested on both Ubuntu 18.04 and Fedora 31.
In Ubuntu 16.04 you will need to install python 3.5.3 or later to use altair (on notebooks).

Install basic Python libraries

If you are using Ubuntu, run the following command:

sudo apt-get install git python3-venv python3-dev python3-tk python3-pip

If you are using Fedora, run the following command:

pip3 install virtualenv jupyter --user

Git clone

git clone https://github.com/tracking-exposed/dashboard.git && cd dashboard

setting up virtualenv

We recommend using a virtual environment.

python3 -m venv venv
source venv/bin/activate

Install requirements

python3 -m pip install -r requirements.txt

Run the configuration wizard

python3 src/wizard.py

The scripts create an entry in config/ directory, you can edit it manually as well.

Clone this wiki locally