Skip to content

Commit 1cace59

Browse files
authored
Revise WinGet and Scoop installation guide (#431)
* Revise WinGet installation guide * `six` is not required by LLDB any more * Revise Scoop installation guide
1 parent ecb9fe6 commit 1cace59

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

install/windows/_scoop.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,12 @@ Invoke-RestMethod get.scoop.sh | Invoke-Expression
1313

1414
~~~ batch
1515
scoop bucket add versions
16-
scoop install python310
17-
~~~
18-
19-
Start up a new command-line shell (eg. Command Prompt, Windows PowerShell) and install the Python library `six`.
20-
21-
~~~ batch
22-
pip install six
16+
scoop install python39
2317
~~~
2418

2519
0. Install platform dependencies:
2620

27-
The platform dependencies cannot be installed through Scoop as the install rules cannot install all required components. They will be installed through the Visual Studio installer.
21+
The platform dependencies cannot be installed through Scoop as the install rules cannot install all required components. They will be installed through the Visual Studio 2022 Community installer. You may change the Visual Studio edition depending on your usage and team size.
2822

2923
<div class="warning" markdown="1">
3024
This code snippet must be run in a traditional Command Prompt (`cmd.exe`).

install/windows/_winget.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,17 @@
22

33
[Windows Package Manager](https://docs.microsoft.com/windows/package-manager/) (aka WinGet) comes pre-installed with Windows 11 (21H2 and later). It can also be found in the [Microsoft Store](https://www.microsoft.com/p/app-installer/9nblggh4nns1) or be [installed directly](ms-appinstaller:?source=https://aka.ms/getwinget).
44

5-
0. Install required dependencies:
5+
0. Install required Visual Studio components:
6+
7+
Install the latest MSVC toolset and Windows 11 SDK (10.0.22000) through Visual Studio 2022 Community installer. You may change the Visual Studio edition depending on your usage and team size.
68

79
~~~ batch
8-
winget install --id Git.Git -e
9-
winget install --id Python.Python.3.9 -e
1010
winget install --id Microsoft.VisualStudio.2022.Community --exact --force --custom "--add Microsoft.VisualStudio.Component.Windows11SDK.22000 --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64"
1111
~~~
1212

13-
Start up a new command-line shell (eg. Command Prompt, Windows PowerShell) and install the Python library `six`.
14-
15-
~~~ batch
16-
pip install six
17-
~~~
13+
0. Install Swift and other dependencies:
1814

19-
0. Install Swift:
15+
Install the latest Swift developer package, as well as compatible Git and Python tools if they don't exist.
2016

2117
~~~ batch
2218
winget install --id Swift.Toolchain -e

0 commit comments

Comments
 (0)