@@ -29,9 +29,9 @@ You may be asked to reload the VS Code IDE for the changes to take effect.
2929If you are developing software on Windows,
3030and particularly software that comes from or targets Unix or Linux systems,
3131it 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
3737code .
4040This should launch VS Code in a way that ensures it performs most operations within WSL.
4141To do this, the [ WSL - Remote extension] [ vscode-wsl-extension ]
4242for 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.
4444You 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
105105following:
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.
118118You 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