Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 665 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 665 Bytes

math70088-tda

Topological data analysis research project for the MATH70088 module for the MSC Statistics & Data Science course at Imperial College London

Python 3 virtual environment

Before using the code it is best to setup and start a Python virtual environment in order to avoid potential package clashes using the requirements file:

# Navigate into the data project directory

# Create a virtual environment
python3 -m venv <env-name>

# Activate virtual environment
source <env-name>/bin/activate

# Install dependencies for code
pip3 install -r requirements.txt

# When finished with virtual environment
deactivate