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
The tools we will be using are not supported for Windows. Windows users can install Windows Subsystem for Linux (WSL) to get the tools working. The instructions for installing WSL can be found here: [https://learn.microsoft.com/en-us/windows/wsl/install](https://learn.microsoft.com/en-us/windows/wsl/install)
6
4
7
-
Once WSL is installed you can follow the rest of the instructions from the WSL terminal.
5
+
## Enable WSL and Install Ubuntu 24.04
8
6
7
+
1.**Enable the Windows Subsystem for Linux**:
8
+
- Open PowerShell as Administrator and run the following command:
9
+
10
+
```shell
11
+
wsl --install
12
+
```
13
+
14
+
2. **Set WSL Version to 2** (if not already set):
15
+
- In PowerShell, execute:
16
+
17
+
```shell
18
+
wsl --set-default-version 2
19
+
```
20
+
21
+
- This sets WSL 2 as the default version for any newly installed distributions.
22
+
23
+
3. **Install Ubuntu 24.04**:
24
+
- Open Microsoft Store and search for"Ubuntu 24.04".
25
+
- Click on "Get" or "Install" to download and install it.
26
+
27
+
4. **Initialize Ubuntu 24.04**:
28
+
- Once installed, launch Ubuntu 24.04 from the Start menu.
29
+
- Follow the on-screen instructions to complete the setup, which includes creating a user account.
30
+
31
+
Once WSL and Ubuntu 24.04 are installed, you can follow the rest of the instructions from the WSL terminal.
0 commit comments