|
1 | | -# Hello World with Flask |
| 1 | +# `01` Hello World with Flask |
2 | 2 |
|
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). |
4 | 4 |
|
5 | 5 | But we are going to do it the right way! Following all the good practices, we have to install and learn some things first. |
6 | 6 |
|
7 | | -## 📦 Requirements |
| 7 | +## 📦 Requirements: |
8 | 8 |
|
9 | 9 | 1. Python 3+ |
10 | 10 |
|
11 | | -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. |
| 11 | +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. |
12 | 12 |
|
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. |
14 | 14 |
|
15 | 15 | ## 📝 Instructions: |
16 | 16 |
|
17 | | -1. Open a new terminal (leave this one open) |
| 17 | +1. Open a new terminal (and leave it open). |
18 | 18 |
|
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: |
20 | 20 |
|
21 | 21 | ```bash |
22 | 22 | $ python --version |
23 | 23 |
|
24 | | -# alternatively you can type |
| 24 | +# Alternatively you can type: |
25 | 25 |
|
26 | 26 | $ python3 --version |
27 | 27 | ``` |
28 | 28 |
|
| 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. |
29 | 30 |
|
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. |
31 | | - |
32 | | -3. Make sure you have pipenv installed: |
| 31 | +3. Make sure you have `pipenv` installed: |
33 | 32 |
|
34 | 33 | 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. |
35 | 34 |
|
36 | 35 | ```bash |
37 | 36 | $ pipenv --version |
38 | 37 | ``` |
39 | 38 |
|
40 | | -Test your step and click `next →` continue. |
| 39 | +Finish the instructions and click `next →` to continue. |
0 commit comments