We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When performing a fresh installation via pip install -r requirements.txt, i get the following error:
pip install -r requirements.txt
The conflict is caused by: The user requested urllib3==1.26.5 requests 2.23.0 depends on urllib3!=1.25.0, !=1.25.1, <1.26 and >=1.21.1
I was able to complete the installation by modifying the requirements to
certifi==2020.4.5.2 chardet==3.0.4 idna==2.9 requests>=2.23.0 urllib3==1.26.5
Pip installed requests-2.28.1.
Expected behavior: Running the command pip install -r requirements.txt will perform a complete installation with no conflicting libraries
Actual behavior: Module requests 2.23.0 depends on urllib3!=1.25.0, !=1.25.1, <1.26 and >=1.21.1, while the original requirements is urllib3==1.26.5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When performing a fresh installation via
pip install -r requirements.txt
, i get the following error:I was able to complete the installation by modifying the requirements to
Pip installed requests-2.28.1.
Expected behavior:
Running the command
pip install -r requirements.txt
will perform a complete installation with no conflicting librariesActual behavior:
Module requests 2.23.0 depends on urllib3!=1.25.0, !=1.25.1, <1.26 and >=1.21.1, while the original requirements is urllib3==1.26.5
The text was updated successfully, but these errors were encountered: