Error installing clarifai could not find a version that satisfies the requirement clarifai.rest (from versions :)

2

I'm trying to install a module called clarifai, using pip install clarifai, and it throws me the following error

  

could not find a version that satisfies the requirement clarifai.rest   (from versions:)

from what I have read others have installed using pip and it works from the command line but not when importing, I do not install it directly. How can you solve it?

    
asked by Pablo 11.04.2018 в 14:21
source

1 answer

1

Try updating pip as follows:

curl https://bootstrap.pypa.io/get-pip.py | python

Your problem seems to be related to the recent deactivation of TLS for pip. See this for more details.

    
answered by 11.04.2018 / 17:48
source