Skip to content

Commit 338a63d

Browse files
authored
Update WindowsQuickStart.md
Update for python 3.10.1 bump.
1 parent f847dba commit 338a63d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/WindowsQuickStart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ del /q vs_community.exe
3636

3737
### Install Python
3838

39-
The `repo` tool uses Python, and as such, we need a Python installation on the host. We recommend installing **Python 3.9.10** to ensure compatibility with the provided scripts and examples. Download and install Python 3.9.10 for your platform from [https://www.python.org/downloads/release/python-3910/](https://www.python.org/downloads/release/python-3910/).
39+
The `repo` tool uses Python, and as such, we need a Python installation on the host. We recommend installing **Python 3.10.1** to ensure compatibility with the provided scripts and examples. Download and install Python 3.10.1 for your platform from [https://www.python.org/downloads/release/python-3101/](https://www.python.org/downloads/release/python-3101/).
4040

4141
### Enable Symbolic Links Support
4242

@@ -181,7 +181,7 @@ the toolchain.
181181
182182
```cmd
183183
set SDKROOT=S:\Program Files\Swift\Platforms\Windows.platform\Developer\SDKs\Windows.sdk
184-
path S:\Program Files\Swift\Runtimes\0.0.0\usr\bin;S:\Program Files\Swift\Toolchains\0.0.0+Asserts\usr\bin;%PATH%
184+
path S:\b\Python%PROCESSOR_ARCHITECTURE%-3.10.1\tools;S:\Program Files\Swift\Runtimes\0.0.0\usr\bin;S:\Program Files\Swift\Toolchains\0.0.0+Asserts\usr\bin;%PATH%
185185
```
186186

187187
### PowerShell Helper
@@ -192,7 +192,7 @@ The following content in your Powershell profile file (whose path is stored in t
192192
function Set-SwiftEnv {
193193
$SwiftRoot = "S:\Program Files\Swift"
194194
$env:SDKROOT = "${SwiftRoot}\Platforms\Windows.platform\Developer\SDKs\Windows.sdk"
195-
$env:Path = "S:\b\Python${env:PROCESSOR_ARCHITECTURE}-3.9.10\tools;${SwiftRoot}\Runtimes\0.0.0\usr\bin;${SwiftRoot}\Toolchains\0.0.0+Asserts\usr\bin;${env:Path}"
195+
$env:Path = "S:\b\Python${env:PROCESSOR_ARCHITECTURE}-3.10.1\tools;${SwiftRoot}\Runtimes\0.0.0\usr\bin;${SwiftRoot}\Toolchains\0.0.0+Asserts\usr\bin;${env:Path}"
196196
}
197197
Set-Alias -Name SwiftEnv -Value Set-SwiftEnv
198198
```

0 commit comments

Comments
 (0)