From be5f1c46f286be0a315ab10efb5ebe5ccb5f105e Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Tue, 3 Sep 2024 21:21:36 +0200 Subject: [PATCH] intro_tutorial.ipynb: Don't install mesa explicitly, let mesa-geo do that (#242) mesa-geo knows what mesa version is compatible with it and has that as a dependency defined in the `pyproject.toml`. So we don't need to install Mesa separately, that can only mess up the mesa version installed. --- docs/tutorials/intro_tutorial.ipynb | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/tutorials/intro_tutorial.ipynb b/docs/tutorials/intro_tutorial.ipynb index 2713c570..4471284d 100644 --- a/docs/tutorials/intro_tutorial.ipynb +++ b/docs/tutorials/intro_tutorial.ipynb @@ -50,7 +50,6 @@ "outputs": [], "source": [ "#Run this if in colab or if you need to install mesa and mesa-geo in your local environment. \n", - "!pip install mesa --quiet\n", "!pip install mesa-geo --quiet\n", "!mkdir -p data\n", "!wget -P data https://raw.githubusercontent.com/projectmesa/mesa-geo/main/docs/tutorials/data/TorontoNeighbourhoods.geojson"