Tags
Asked 4 years ago
13 Dec 2019
Views 11546
noob

noob posted

pip install ERROR: Could not find a version that satisfies the requirement requirements.txt

pip install requirements.txt


ERROR: Could not find a version that satisfies the requirement requirements.txt
(from versions: none)
ERROR: No matching distribution found for requirements.txt


requirements.txt is like


zeep==3.3.1
CacheControl==0.12.5
cachetools==2.1.0
certifi==2018.1.18
chardet==3.0.4
click==6.7
coreapi==2.3.3
coreschema==0.0.4
Django==2.1.1
django-appconf==1.0.1
django-ckeditor==5.4.0
django-cors-headers==2.4.0
django-image-cropping==1.1.0
django-imagekit==4.0.2
django-js-asset==1.0.0
django-modeltranslation==0.13b1
django-uwsgi-cache==1.0.1
djangorestframework==3.8.2
drf-yasg==1.9.1
firebase-admin==2.12.0
flex==6.13.2
future==0.16.0
google-api-core==1.3.0
google-auth==1.5.1
google-cloud-core==0.28.1
google-cloud-firestore==0.29.0
google-cloud-storage==1.10.0
google-resumable-media==0.3.1
googleapis-common-protos==1.5.3
idna==2.6
inflection==0.3.1
itypes==1.1.0
Jinja2==2.10
jsonpointer==1.14
jsonschema==2.6.0
MarkupSafe==1.0
msgpack==0.5.6
openapi-codec==1.3.2
pilkit==2.0
Pillow==5.2.0
protobuf==3.6.0
psycopg2-binary==2.7.4
pyasn1==0.4.4
pyasn1-modules==0.2.2
PyJWT==1.6.1
pytz==2018.3
PyYAML==3.13
requests==2.18.4
rfc3987==1.3.7
rsa==3.4.2
ruamel.yaml==0.15.45
simplejson==3.15.0
six==1.11.0
strict-rfc3339==0.7
swagger-spec-validator==2.3.1
uritemplate==3.0.0
urllib3==1.22
validate-email==1.3
Rasi

Rasi
answered Nov 30 '-1 00:00

so one or more of the package is not allowed to install so you are getting that error

so start install one by one by typing like at command prompt.

pip install zeep==3.3.1


eventually you will find which one is causing trouble
Post Answer