This project is implemented in Python 3.11. To install the dependencies for this project and generate the reports:
-
Install Python 3.11.
-
Open a terminal window and navigate to the directory containing the project files.
-
Create an virtual environment for the report/project. See here for more information.
> python -m venv .venv -
In the newly created environment, install the required packages from the requirements.txt file included with the project files.
(.venv) > pip install -r requirements.txt -
Open the reports with Jupyter Notebooks.
(.venv) > jupyter notebook <exercise_path>/main.ipynb -
To generate the .html version of the report,
(.venv) > jupyter nbconvert --to html <exercise_path>/main.ipynb