- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 7.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
📝 Add step about upgrading pip in the venv to avoid errors when installing dependencies docs/en/docs/contributing.md
#5181
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5181 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 535 535
Lines 13825 13825
=========================================
Hits 13825 13825 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
📝 Docs preview for commit 91aca11 at: https://62d83863194b980600bb5976--fastapi.netlify.app |
<div class="termy"> | ||
|
||
```console | ||
$ python -m pip install --upgrade pip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, this command helped me to solve errors when attempting to install Flit
since I had and old pip
version, .i.e.
$ python -m pip install --upgrade pip
Cache entry deserialization failed, entry ignored
Collecting pip
Downloading https://files.pythonhosted.org/packages/a4/6d/6463d49a933f547439d6b5b98b46af8742cc03ae83543e4d7688c2420f8b/pip-21.3.1-py3-none-any.whl (1.7MB)
100% |████████████████████████████████| 1.7MB 816kB/s
Installing collected packages: pip
Found existing installation: pip 9.0.1
Uninstalling pip-9.0.1:
Successfully uninstalled pip-9.0.1
Successfully installed pip-21.3.1
Hi @tiangolo please take a look when having a chance, thx! |
If you have a current version of Python, then pip wouldn't be outdated. What version did you have that Flit conflict with? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
docs/en/docs/contributing.md
Nice thank you @edisnake! 🚀 And thanks @JarroVGIT for the discussion! ☕ |
Doc improvement for avoiding issues when installing dependencies as contributor.