This repo contains notebooks and datasets used by the Analytics discipline to demonstrate how to implement anomaly detection.
You can run the noteboos in your own local environment by following the steps below.
You can download the latest version of Python from: https://www.python.org/downloads/
You can download VS Code from: https://code.visualstudio.com/download
-
Open the VS Code terminal
-
Install python package venv which enables the creation of local environments
pip install venv
-
Create the local environment in your VS Code subfolder
python -m venv .venv
-
In Visual Studio code launch the Command Pallette: Ctrl + Shift + P
-
Select Python: Select Interpreter
-
Select your local environment
-
Confirm that VS Code is pointing to your local virtual environment
At the bottom right hand corner of VS Code, you should see your local virtual envrionment.
-
Open the terminal window inside VS Code
-
Run activate script file
.venv\scripts\activate
-
Confirm you can see the environment name at the left of the command prompt

The dependencies needed to run the notebooks are included in the requirements.txt file. You can install them all with the command:
pip install -r requirements.txt



