From 91aca11080fca4979a094e140df88fb281405a90 Mon Sep 17 00:00:00 2001 From: Edwuin Gutierrez Date: Wed, 20 Jul 2022 11:59:40 -0500 Subject: [PATCH] Adding pip step to avoid errors when installing dependencies --- docs/en/docs/contributing.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/en/docs/contributing.md b/docs/en/docs/contributing.md index 648c472fea964..ca51c6e82afda 100644 --- a/docs/en/docs/contributing.md +++ b/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: +
+ +```console +$ python -m pip install --upgrade pip + +---> 100% +``` + +
!!! tip Every time you install a new package with `pip` under that environment, activate the environment again.