Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 757 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 757 Bytes

itu_challenge_2024

GeoAI Ground-level NO2 Estimation Challenge by ITU

Development environment configuration

Create and configure a virtual environment (venv)

  1. Create the virtual environment:

    python3 -m venv venv
  2. Activate the virtual environment:

    • In macOS/Linux:
      source venv/bin/activate
    • In Windows:
      .\venv\Scripts\activate

Create a Jupyter Notebook kernel linked to venv

  1. Install Jupyter in the virtual environment:

    pip install jupyter
  2. Create a Jupyter Notebook kernel linked to the venv:

    python -m ipykernel install --user --name=itu_challenge --display-name "ITU Challenge 2024"