A flask UI for running co2mpas.
-
create a virtual env, eg. in this folder called
.venv
with:pythonX.Y -m venv .venv
and activate it afterwards,
-
install recent co2mpas from sources in develop mode with:
git clone ... <some-folder> pip install -e <some-folder>
-
(optional) Install all pinned versions in
requirements.txt
with::pip install -r ./requirements.txt
assuming you want to reproduce the exact environment, OR just...
-
install this project in develop mode along with all its development-dependencies with:
pip install .[dev]
-
enable pre-commit hooks for black-formatting python code with::
pre-commit install
co2wui