-
Notifications
You must be signed in to change notification settings - Fork 3k
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
20.0.2 Regression: module missing 'pip._internal.download' #7645
Comments
I have regression on Python 3.4, Centos 6.10, but looks similar: |
Use of the internal pip API is not supported. See here. We are routinely refactoring pip's internals, for efficiency and maintainability, and to support new features. So any release could break code that imports from pip - we make no guarantees of stability. See the linked section of the documentation for more information, and suggestions on how to use pip from within your code. |
I see, thanks.
|
Environment
Python 3
Description
There's a regression
ModuleNotFoundError: No module named 'pip._internal.download'
Expected behavior
How to Reproduce
from pip._internal.download import PipSession
Output
ModuleNotFoundError: No module named 'pip._internal.download'
The text was updated successfully, but these errors were encountered: