Skip to content

Commit 680fb18

Browse files
committed
small adjustments
1 parent f39b7d9 commit 680fb18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Thank you for taking our course. Completing the following tasks will prepare you
1919
git clone <ssh-link>
2020
```
2121
in the terminal and substitute the `<ssh-link>` with the link you just copied. After pressing `Enter` your repository will be downloaded into your current working directory.
22-
- Navigate into the downloaded directory by typing `cd exercise-01-intro-yourname`. Use `ls` to list the contents of the folder you are currently working in. If Visual Studio Code is installed correctly you can open it from the terminal by typing `code .`.
22+
- Navigate into the downloaded directory by typing `cd exercise-01-intro-yourgitname`. Use `ls` to list the contents of the folder you are currently working in. If Visual Studio Code is installed correctly you can open it from the terminal by typing `code .`.
2323

2424
In Vscode, you can now open a rendered version of this readme. Right-click the file and select `Open Preview`.
2525
@@ -34,7 +34,7 @@ The HRZ-Pool computers run Ubuntu Linux. Download the `Miniconda3 Linux 64-bit`
3434
3535
### Task 3: Setting up Vscode for Python development
3636
- Open Visual Studio Code (Vscode).
37-
- Click on the extensions tab in Vscode (on the left hand side) or press `Ctrl+Shift+X`. Install the `Python` and `Remote-SSH` extensions. Choose the versions provided by Microsoft.
37+
- Click on the extensions tab in Vscode (on the left hand side) ![extensions_tab.png](./images/extensions_tab.png) or press `Ctrl+Shift+X`. Install the `Python` and `Remote-SSH` extensions. Choose the versions provided by Microsoft.
3838
- Make the Miniconda interpreter your default in Vscode by pressing `Ctrl+Shift+P`. Type `select interpreter` and press enter. In the following dialogue, choose the `base` environment.
3939
- (Optional) For the course, we suggest to install `TODO Highlight` extension provided by Wayou Liu. This is handy in identifying TODO parts of exercise much easier.
4040
@@ -57,7 +57,7 @@ To prevent similar issues, we strongly recommend testing your code. Let's learn
5757
```bash
5858
nox -s test
5959
```
60-
The python extension provides test integration into Vscode. To use it, click on the lab-flask icon on the left sidebar. When opening it for the first time, it asks you for a configuration.
60+
The python extension provides test integration into Vscode. To use it, click on the lab-flask icon on the left sidebar ![labflask.png](./images/labflask.png). When opening it for the first time, it asks you for a configuration.
6161
Click the `Configure Python Tests` button and select `pytest` in the ensuing prompt. In the next step, Vscode wants to know the location of the test folder. Choose `tests`.
6262
Vscode will now display your tests on the sidebar on the left. Click the play symbol next to the tests folder to run all tests.
6363

0 commit comments

Comments
 (0)