Hive Helsinki project "Python for Data Science", which serves as an introduction to Python and data science coming from C and C++.
Every exercise has been done using Python version 3.10.x
- mise can be used to set python version and venv
# create venv
python -m venv .venv
# activate venv
source .venv/bin/activate
# install requirements
pip install -r requirements.txt