You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
@@ -10,31 +10,30 @@ But we are going to do it the right way! Following all the good practices, we ha
10
10
11
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 (leave this one 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
-
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.
31
30
32
31
3. Make sure you have pipenv installed:
33
32
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.
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