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: tutorials/setting_up_simulator.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,26 +11,25 @@ Setting up the simulator
11
11
You need to download and install [Webots](https://cyberbotics.com/#download) (the download is around 300MB).
12
12
This is the platform we run our simulation in.
13
13
14
-
Versions "R2022b" and "R2023a" of Webots are supported.
15
-
*Note*: versions of the simulation prior to sr2023.3 did not support Webots "R2023a".
14
+
Version "R2023b" of Webots is supported.
16
15
17
16
#### Python Version
18
17
19
18
You will also need Python installed.
20
19
21
20
| Platform | Supported Python Version |
22
21
|----------|--------------------------|
23
-
| Windows | 3.8-3.10 (64-bit) |
24
-
| macOS | 3.8-3.10|
25
-
| Linux | 3.8-3.10|
22
+
| Windows | 3.8-3.11 (64-bit) |
23
+
| macOS | 3.8-3.11|
24
+
| Linux | 3.8-3.11|
26
25
27
26
There are a small number of [external libraries]({{ site.baseurl }}/kit/brain_board/python_libraries) which will be available to your robot code during the competition.
28
27
Note that for local development you will need to install these yourself.
29
28
30
29
### Installing the simulation
31
30
32
31
1. Create a directory, perhaps called `simulation` where you will store your robot code.
33
-
2.[Download the simulation](https://github.com/srobo/competition-simulator/releases/download/sr2023.5/competition-simulator-sr2023.5.zip), the latest version is sr2023.5, released on 2023-02-22.
32
+
2.[Download the simulation](https://github.com/srobo/competition-simulator/releases/download/TODO/competition-simulator-TODO.zip), the latest version is TODO, released on TODO.
34
33
3. Unzip the simulation as a subdirectory of the directory you created in the first step:
35
34
```
36
35
simulation
@@ -67,10 +66,10 @@ print(sys.executable)
67
66
68
67
On Windows you can set the path to the Python version to use in Webots UI via
Your Python path is likely similar to `C:\Users\<USERNAME>\AppData\Local\Programs\Python\Python39\python.exe` when using Python 3.9, where `<USERNAME>` is your login.
69
+
Your Python path is likely similar to `C:\Users\<USERNAME>\AppData\Local\Programs\Python\Python311\python.exe` when using Python 3.11, where `<USERNAME>` is your login.
71
70
72
71
On Mac you can set the path to the Python version to use via **Webots** → **Preferences** <kbd>⌘</kbd><kbd>,</kbd>.
73
-
Your Python path is likely similar to `/Library/Frameworks/Python.framework/Versions/3.9/bin/python3` when using Python 3.9.
72
+
Your Python path is likely similar to `/Library/Frameworks/Python.framework/Versions/3.11/bin/python3` when using Python 3.11.
74
73
75
74
You'll need to ensure a matching version of Python is installed. If you're still
76
75
having problems, ask for help in [`#simulator-help`][simulator-help] in
0 commit comments