]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Add step about upgrading pip in the venv to avoid errors when installing dependenci...
authorEdwuin Gutierrez <edwinguti86@gmail.com>
Fri, 26 Aug 2022 14:26:28 +0000 (09:26 -0500)
committerGitHub <noreply@github.com>
Fri, 26 Aug 2022 14:26:28 +0000 (14:26 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/contributing.md

index 648c472fea964a3d84b91011e0ba88cf0d725abf..ca51c6e82afda8c978999ff5c4393ca71a163d19 100644 (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.