python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
results in:
ERROR: Cannot install -r requirements.txt (line 6) and urllib3==1.26.5 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested urllib3==1.26.5
requests 2.22.0 depends on urllib3!=1.25.0, !=1.25.1, <1.26 and >=1.21.1
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies
I was able to get it running by removing the package version from urllib3 which results in version 1.25.11 being used.
python3 -m venv venv source venv/bin/activate pip install -r requirements.txtresults in:
I was able to get it running by removing the package version from urllib3 which results in version 1.25.11 being used.