Skip to content

Commit 9bd7a80

Browse files
committed
Fixed using jupyter image links error
1 parent c860599 commit 9bd7a80

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

lessons/basics/using_jupyter_notebook.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pip install jupyter
2727
### Open JupyterLab
2828
If using Anaconda **Search for the program _Anaconda Navigator_ and open it**. After a few seconds, you should see a window like this appear:
2929

30-
![Window showing six logos for different programs. A red arrow points to the "Launch" button below the top right logo.](/lessons/basics/images/navigator_jupyterlab.png)
30+
![Window showing six logos for different programs. A red arrow points to the "Launch" button below the top right logo.](images/navigator_jupyterlab.png)
3131

3232
**Press the "Launch" under JupyterLab.**
3333

@@ -37,13 +37,13 @@ jupyter lab
3737
```
3838
This will open a tab on your default web browser which should look like this:
3939

40-
![Window showing a folder navigation menu on the left and a Python 3 logo on the right.](/lessons/basics/images/jupyterlab.png)
40+
![Window showing a folder navigation menu on the left and a Python 3 logo on the right.](images/jupyterlab.png)
4141

4242
Look at the address bar at the top of your browser. It should read `localhost` followed by some numbers. This means that you are not actually accessing the internet, despite being on a web browser. The page is generated locally by your computer, so you don't need an internet connection to work on your Jupyter Notebook.
4343

4444
**In the sidebar on the left, search through your folders for your `.ipynb` file and double-click on it.** If you just downloaded this file, it might be in your _Downloads_ folder. Your screen should now show this:
4545

46-
![Screenshot of a Jupyter Notebook.](/lessons/basics/images/example_notebook.png)
46+
![Screenshot of a Jupyter Notebook.](images/example_notebook.png)
4747

4848
You have just opened the Jupyter Notebook.
4949

@@ -54,21 +54,21 @@ There are two important kinds of cells: _Markdown_ and _Code_.
5454

5555
You can tell what kind a cell is by looking at the top ribbon:
5656

57-
![Top bar of the Jupyter Notebook with the word "Markdown" circled in red.](/lessons/basics/images/top_bar.png)
57+
![Top bar of the Jupyter Notebook with the word "Markdown" circled in red.](images/top_bar.png)
5858

5959
### Markdown cells
6060
Markdown cells can contain formatted text and images. To change this content, **double-click on the cell**. This will show you the unformatted text, which has been written using a language called "Markdown":
6161

62-
![A box of raw Markdown text.](/lessons/basics/images/raw_markdown.png)
62+
![A box of raw Markdown text.](images/raw_markdown.png)
6363

6464
To make the text appear formatted again, make sure that the cell is selected, and **click on the "Run" button in the top ribbon** (Shortcut: Shift + Enter):
6565

66-
![Top bar of the Jupyter Notebook with the "run" triangle circled in red.](/lessons/basics/images/run_button.png)
66+
![Top bar of the Jupyter Notebook with the "run" triangle circled in red.](images/run_button.png)
6767

6868
### Code cells
6969
Code cells contain programming code; in this case—Python. **Select the code cell, and run it, just like you ran the Markdown cell.** The result should look like this:
7070

71-
![Code cell showing "print(753+247)", and below, the result: 1000.](/lessons/basics/images/code_cell.png)
71+
![Code cell showing "print(753+247)", and below, the result: 1000.](images/code_cell.png)
7272

7373
Observe how the output of the Python code (the number 1000) is printed below the cell. Additionally, a new empty code cell was created below, to let you continue writing code.
7474

0 commit comments

Comments
 (0)