📝 Add step about upgrading pip in the venv to avoid errors when installing dependencies `docs/en/docs/contributing.md` (#5181)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Edwuin Gutierrez 2022-08-26 09:26:28 -05:00 committed by GitHub
parent 3d3a7dbe7e
commit b3f2f08251
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -84,7 +84,17 @@ To check it worked, use:
If it shows the `pip` binary at `env/bin/pip` then it worked. 🎉
Make sure you have the latest pip version on your virtual environment to avoid errors on the next steps:
<div class="termy">
```console
$ python -m pip install --upgrade pip
---> 100%
```
</div>
!!! tip
Every time you install a new package with `pip` under that environment, activate the environment again.