Go to the project root directory in Terminal and run:
# Create a virtual environment:
python -m venv .venv
# Activate the virtual environment:
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`pip install -r requirements.txtThis will install the required packages into your virtual environment.
python main.py <PATH_TO_YOUR_CSV_FILE>Replace <PATH_TO_YOUR_CSV_FILE> with the path to your CSV file containing the data you want to open.
Your source file will not be modified. Output will be saved to the outputs folder in the project root directory.
# When done, deactivate the virtual environment:
deactivate