Skip to content

Commit b2d61ba

Browse files
authored
Update README.md
1 parent 0fb919b commit b2d61ba

File tree

1 file changed

+6
-6
lines changed
  • .learn/exercises/02-pipenv-installation

1 file changed

+6
-6
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# `02` Initialize Pipenv
22

3-
It is possible to have several python projects with different versions of python, that's why you need to specify which python version you want to use for every project during setup.
3+
It is possible to have several Python projects with different versions of Python, that's why you need to specify which Python version you want to use for every project during setup.
44

5-
In this case, we don't care which version of python we use as long as it's more than 3.0.
5+
In this case, we don't care which version of Python we use as long as it's more than `3.0`.
66

7-
Every python project should be wrapped in a "virtual environment" to ensure that each of them have their own Python version, modules and libraries. Make sure nothing gets installed globally in your computer, only install inside the specified environment under the `.venv` folder.
7+
Every Python project should be wrapped in a "virtual environment" to ensure that each of them have their own Python version, modules and libraries. Make sure nothing gets installed globally in your computer, only install inside the specified environment under the `.venv` folder.
88

99
## 📝 Instructions:
1010

11-
1. Run the following command to create a new virtual environment with python 3 on it:
11+
1. Run the following command to create a new virtual environment with Python 3 on it:
1212

1313
```bash
1414
$ pipenv install --python 3
1515
```
1616

17-
You should see a **PipFile** on the root of your project and it should have a **[requires]** inside of it for python version 3+: similar to this one (but maybe with a different python 3 version).
17+
You should see a **PipFile** on the root of your project and it should have a **[requires]** inside of it for Python version 3+: similar to this one (but maybe with a different Python 3 version).
1818

1919
![Pipfile preview](../../assets/pipfile.png?raw=true)
2020

21-
Test your step and click `next →` continue.
21+
Follow the steps and click `next →` to continue.

0 commit comments

Comments
 (0)