From b3f2f08251bee14bf43cb059a18d70701baa8a7a Mon Sep 17 00:00:00 2001 From: Edwuin Gutierrez Date: Fri, 26 Aug 2022 09:26:28 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20step=20about=20upgrading?= =?UTF-8?q?=20pip=20in=20the=20venv=20to=20avoid=20errors=20when=20install?= =?UTF-8?q?ing=20dependencies=20`docs/en/docs/contributing.md`=20(#5181)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sebastián Ramírez --- 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.