Skip to content

flatland-association/flatland-workshop-2024

Repository files navigation

Flatland Workshop 2024

Shared codespace for Flatland Workshop and Symposium 2024.

Topics of interest for the Flatland Workshop

Backlog

Publications - What was done before

An overview:

Very interesting with potentially big impact on Flatland 4.0:

TL;DR;

Use local setup (preferred) or, alternatively, Colab approach.

Local Setup

Pre-requisite: Install Miniconda (or use any XXXconda).

bash

# first time conda usage only
conda init bash

conda create -n flatland python=3.10.0
conda activate flatland


git clone https://github.com/flatland-association/flatland-rl.git
cd flatland-rl
python -m pip install -r requirements.txt -r requirements-dev.txt

export PYTHONPATH=.
python -m jupyter notebook

# open browser http://127.0.0.1:8888/notebooks/notebooks/flatland_animate.ipynb

Windows Powershell

# first time conda usage only
conda init powershell

conda create -n flatland python=3.10.0
conda activate flatland


git clone https://github.com/flatland-association/flatland-rl.git
cd flatland-rl
python -m pip install -r requirements.txt -r requirements-dev.txt

$env:PYTHONPATH=$pwd
python -m jupyter notebook

# open browser http://127.0.0.1:8888/notebooks/notebooks/flatland_animate.ipynb

Troubleshooting

Colab

Alternatively, use the provided simple_flatland_rl.ipynb on Colab