diff --git a/episodes/profiling-functions.md b/episodes/profiling-functions.md index dd3492d..4ff3d8f 100644 --- a/episodes/profiling-functions.md +++ b/episodes/profiling-functions.md @@ -377,7 +377,7 @@ The default configuration of the Predator Prey model takes around 10 seconds to Download and profile the Python predator prey model, try to locate the function call(s) where the majority of execution time is being spent -*This exercise uses the package `numpy`, it can be installed via `pip install numpy`.* +*This exercise uses the packages `numpy` and `matplotlib`, they can be installed via `pip install numpy matplotlib`.* > The predator prey model is a simple agent-based model of population dynamics. Predators and prey co-exist in a common environment and compete over finite resources. > diff --git a/learners/setup.md b/learners/setup.md index 75b984a..0d2536b 100644 --- a/learners/setup.md +++ b/learners/setup.md @@ -22,10 +22,10 @@ This course uses Python and was developed using Python 3.11, therefore it is rec -The non-core Python packages required by the course are `pytest`, `snakeviz`, `line_profiler` and `numpy` which can be installed via `pip`. +The non-core Python packages required by the course are `pytest`, `snakeviz`, `line_profiler`, `numpy` and `matplotlib` which can be installed via `pip`. ```sh -pip install pytest snakeviz line_profiler[all] numpy +pip install pytest snakeviz line_profiler[all] numpy matplotlib ``` :::::::::::::::::::::::::::::::::::::::::::::::::::