Browse Source
📝 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 <[email protected]>
pull/4200/merge
Edwuin Gutierrez
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
0 deletions
-
docs/en/docs/contributing.md
|
|
@ -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. |
|
|
|