Skip to content

Commit 428ddfd

Browse files
committed
updated setup instructions for 3.13
Not recommending 3.14 currently, since line_profiler does not have binary wheels available on PyPI yet
1 parent c4acd79 commit 428ddfd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

learners/setup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ Download the [data zip file](https://example.com/FIXME) and unzip it to your Des
1818

1919
### Details
2020

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.
2222

2323
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`.
2424

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:
2626

2727
```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
3030
```
3131

3232
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

Comments
 (0)