Skip to content

Commit 26e4801

Browse files
committed
Update worksheet.md
1 parent f438c1f commit 26e4801

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

worksheet.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,25 @@ Install the lightweight web framework Flask and set up a basic web server with d
44

55
## Installing pip and Flask
66

7-
First you're going to install the Flask package. Make sure you're online before you start.
7+
First you're going to install the Flask package. Make sure you are connected to the internet either by ethernet cable or wifi before you start.
88

99
1. Start by opening a Terminal window from the taskbar or applications menu:
1010

1111
![Open Terminal window](images/open-terminal.png)
1212

13-
1. Next, you'll need to install `pip` with the following command:
13+
1. Next, you'll need to install `pip` by typing the following command and pressing **Enter** on the keyboard:
1414

1515
```bash
1616
sudo apt-get install python-pip
1717
```
1818
`pip` is a tool for installing Python packages from the Python Packaging Index (PyPi): you can browse packages at [pypi.python.org](https://pypi.python.org/).
1919

20-
1. Now use `pip` to install Flask:
20+
1. Now use `pip` to install Flask by typing:
2121

2222
```bash
2323
sudo pip install flask
2424
```
25+
And press **enter**.
2526

2627
## Building a basic Flask web application
2728

0 commit comments

Comments
 (0)