Skip to content

Commit 9b43b4d

Browse files
authored
Update README.md
1 parent 17c1b31 commit 9b43b4d

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Hello World with Flask
22

3-
During this tutorial, we'll be building a REST API using the Python programming language and the [Flask library](https://flask.palletsprojects.com/en/1.1.x/) (ideal for creating APIs).
3+
During this tutorial, we'll be building a REST API using the Python programming language and the [Flask library](https://flask.palletsprojects.com/) (ideal for creating APIs).
44

55
But we are going to do it the right way! Following all the good practices, we have to install and learn some things first.
66

@@ -10,31 +10,30 @@ But we are going to do it the right way! Following all the good practices, we ha
1010

1111
2. Pipenv: we are going to be using the [Pipenv package manager](https://pipenv-fork.readthedocs.io/en/latest/) during these exercises, please install [Pipenv in your computer](https://github.com/pypa/pipenv#installation) if you don't have it already.
1212

13-
If you are building this project using Gitpod, you don't have to install anything. Pipenv and Python 3 already come pre-installed.
13+
If you are building this project using Codespaces or Gitpod, you don't have to install anything. Pipenv and Python 3 already come pre-installed.
1414

1515
## πŸ“ Instructions:
1616

17-
1. Open a new terminal (leave this one open)
17+
1. Open a new terminal (leave this one open).
1818

19-
2. Make sure you have python version 3 by running the following commands:
19+
2. Make sure you have Python version 3 by running the following commands:
2020

2121
```bash
2222
$ python --version
2323

24-
# alternatively you can type
24+
# Alternatively you can type:
2525

2626
$ python3 --version
2727
```
2828

29-
30-
πŸ‘‰ Note: if you don't have python version 3 you should go ahead and install it, we [πŸ”₯ strongy recommend using Pyenv](https://github.com/pyenv/pyenv) to install python.
29+
> πŸ‘‰ Note: if you don't have python version 3 you should go ahead and install it, we [πŸ”₯ strongy recommend using Pyenv](https://github.com/pyenv/pyenv) to install python.
3130
3231
3. Make sure you have pipenv installed:
3332

34-
Instead of using Pip and virtual env separately, we are going to be using Pipenv: A combination of both technologies that will make your life much easier.
33+
Instead of using Pip and a virtual environment separately, we are going to be using Pipenv: A combination of both technologies that will make your life much easier.
3534

3635
```bash
3736
$ pipenv --version
3837
```
3938

40-
Test your step and click `next β†’` continue.
39+
Finish the instructions and click `next β†’` to continue.

0 commit comments

Comments
Β (0)