Skip to content

Session 4: geo-Python (Jupyter, Numpy, GeoPandas, Matplotlib)

Instructors: Lukas Beuster & Gina Stavropoulou

Requirements:

A computer with Python3.8 or higher.

Getting Started:

You will need to use your terminal on Linux/macOS, or your PowerShell on Windows.

Clone the repo (or use GitHub Desktop)

git clone https://github.com/GinaStavropoulou/geogeek-workshop.git
cd geogeek-workshop

Create a new venv

Use either pyenv or the following commands:

Create a virtual environment:

python3 -m venv .venv
Activate the environment
source .venv/bin/activate

Create a virtual environment:

python3 -m venv .venv
Activate the environment
.venv\Scripts\Activate.ps1

Install the requirements:

pip install -r requirements.txt

Then get started with:

jupyter lab

This will open jupyter lab on your browser. You can choose the notebook of Exercise 0 to start with.