You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learners/setup.md
+5-16Lines changed: 5 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,21 +18,21 @@ Download the [data zip file](https://example.com/FIXME) and unzip it to your Des
18
18
19
19
### Details
20
20
21
-
This course uses Python and was developed using Python 3.11, therefore it is recommended that you have a Python 3.11 or newer environment.
21
+
This course was originally developed using Python 3.11 and last tested with Python 3.13. We recommend that you have a Python 3.13 environment.
22
22
23
23
You may want to create a new Python virtual environment for the course, this can be done with your preferred Python environment manager (e.g. `conda`, `pipenv`), the required packages can all be installed via `pip`.
24
24
25
-
If you have `conda` available, you can create and activate a new environment named `py311_env` with Python 3.11 using the following command:
25
+
If you have `conda` available, you can create and activate a new environment using the following command:
26
26
27
27
```sh
28
-
conda create --name py311_env python=3.11
29
-
conda activate py311_env
28
+
conda create --name prof_opt python=3.13
29
+
conda activate prof_opt
30
30
```
31
31
32
32
The non-core Python packages required by the course are `pytest`, `snakeviz`, `line_profiler`, `numpy`, `pandas` and `matplotlib` which can be installed via `pip`.
0 commit comments