Tutorial for EuroSciPy 2024
Covid Data from European Centre for Disease Prevention and Control https://www.ecdc.europa.eu/en/publications-data/data-daily-new-cases-covid-19-eueea-country
Please ensure that you have the following installed on your system:
- Python: Make sure Python is installed and accessible from the command line. This tutorial was created using Python 3.12
- pip: Python package installer.
- Git: For version control and to clone repositories.
- virtualenv or others for creating Python environments
- Clone this repository
git clone https://github.com/NeroCorleone/matplotlib-tutorial
cd <repo-directory>
- Create a virtual environment and activate it
virtualenv venv_tutorial
source venv_tutorial/bin/activate
- Install Python requirements
pip install -r requirements.txt
- Launch Jupyter and execute notebooks
jupyter lab