Could not find a version that satisfies the requirement

后端 未结 12 1196
耶瑟儿~
耶瑟儿~ 2020-11-29 17:34

I\'m installing several Python packages in Ubuntu 12.04 using the following requirements.txt file:

numpy>=1.8.2,<2.0.0
matplotlib>=1.3.         


        
12条回答
  •  温柔的废话
    2020-11-29 18:25

    I got this error while installing awscli on Windows 10 in anaconda (python 3.7). While troubleshooting, I went to the answer https://stackoverflow.com/a/49991357/6862405 and then to https://stackoverflow.com/a/54582701/6862405. Finally found that I need to install the libraries PyOpenSSL, cryptography, enum34, idna and ipaddress. After installing these (using simply pip install command), I was able to install awscli.

提交回复
热议问题