Skip to content

Commit def4bcc

Browse files
authored
Adds small fixes
1 parent 574c54a commit def4bcc

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

_extras/vscode.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ You may be asked to reload the VS Code IDE for the changes to take effect.
2929
If you are developing software on Windows,
3030
and particularly software that comes from or targets Unix or Linux systems,
3131
it can be advantageous to use [WSL (Windows Subsystem for Linux)][wsl].
32-
Although this course does not explicitly support WSL setup,
33-
we will provide some guidance on how to best link up WSL with VS Code.
34-
In your WSL terminal, navigate to the project folder for this course and execute the command
32+
Although this course does not explicitly support WSL,
33+
we will provide some guidance here on how to best link up WSL with VS Code (if that is your use case).
34+
In your WSL terminal, navigate to the project folder for this course and execute the command:
3535

3636
```bash
3737
code .
@@ -40,7 +40,7 @@ code .
4040
This should launch VS Code in a way that ensures it performs most operations within WSL.
4141
To do this, the [WSL - Remote extension][vscode-wsl-extension]
4242
for VS Code should automatically be installed.
43-
If this doesn't happen, please install the extension manually.
43+
If this does not happen, please install the extension manually.
4444
You can also launch WSL sessions from VS Code itself using the
4545
[instructions on the extension page.][vscode-wsl-extension-launch-options]
4646

@@ -105,7 +105,7 @@ For this course you will need to install `pytest`, `numpy` and `matplotlib`. Sta
105105
following:
106106

107107
~~~
108-
pip install numpy matplotlib pytest
108+
python3 -m pip install numpy matplotlib pytest
109109
~~~
110110
{: .language-bash}
111111

@@ -118,7 +118,7 @@ Pip will usually inform you via a warning if a newer version is available.
118118
You can upgrade pip by running the following from the terminal:
119119

120120
~~~
121-
pip install --upgrade pip
121+
python3 -m pip install --upgrade pip
122122
~~~
123123
{: .language-bash}
124124

0 commit comments

Comments
 (0)