Skip to content

Commit bf6f645

Browse files
committed
Update Python version references from 3.8 to 3.12 in EngineGettingStarted.md
The contributor guide referenced Python 3.8.2, which is outdated. The project now requires Python 3.12 as specified in README.md and the CI pipelines.
1 parent 6d984de commit bf6f645

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/contributor-guide/EngineGettingStarted.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44

55
* https://code.visualstudio.com/download
66

7-
## Step 2: Install Python 3.8.2
7+
## Step 2: Install Python 3.12
88

99
* https://www.python.org/downloads/windows/
1010

1111
## Step 3: Make sure VSCode points to the right version of python
1212

1313
* In your settings.json file add the path to your virtual environment's python.exe (recommended)
14-
or the Python38 python.exe:
14+
or the Python312 python.exe:
1515
* "python.pythonPath": [path to your virtual environment's python.exe]
16-
* "python.pythonPath": "C:\Python38\python.exe"
16+
* "python.pythonPath": "C:\Python312\python.exe"
1717

1818
## Step 4: Make this version of python your default
1919

2020
Adding the following two paths as the first paths to your windows user environment __PATH__ variable
2121

22-
* C:\Python38\Scripts
23-
* C:\Python38
22+
* C:\Python312\Scripts
23+
* C:\Python312
2424

2525
## Step 5: Create a working directory
2626

0 commit comments

Comments
 (0)