From: Edwuin Gutierrez Date: Fri, 26 Aug 2022 14:26:28 +0000 (-0500) Subject: 📝 Add step about upgrading pip in the venv to avoid errors when installing dependenci... X-Git-Tag: 0.81.0~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b3f2f08251bee14bf43cb059a18d70701baa8a7a;p=thirdparty%2Ffastapi%2Ffastapi.git 📝 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 --- diff --git a/docs/en/docs/contributing.md b/docs/en/docs/contributing.md index 648c472fea..ca51c6e82a 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.