Skip to content

Commit b281d6b

Browse files
committed
Add pip and python installation commands
1 parent d3e7c46 commit b281d6b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

docs/src/content/docs/start-here/initial-setup.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,15 @@ Follow Microsoft's official guide to install WSL: https://learn.microsoft.com/en
3131
sudo apt install -y build-essential gcc-multilib g++-multilib cmake curl
3232
```
3333

34-
2. Install Python 3.11+ and pip. If you are using Ubuntu 24.04 LTS or later, or installed the default WSL distribution, you should already have a compatible version of Python installed. <br/>Check your installed Python version with:
34+
2. Install Python 3.11+ and pip. If you are using Ubuntu 24.04 LTS or later, or installed the default WSL distribution, you should already have a compatible version of Python installed.
3535

36+
```shell
37+
sudo apt install python3
38+
sudo apt install python3-pip
39+
40+
```
41+
42+
Check your installed Python version with:
3643
```shell
3744
python3 --version
3845
```

0 commit comments

Comments
 (0)