No module named urllib3

后端 未结 5 2131
花落未央
花落未央 2021-02-13 04:58

I wrote a script to call an API and ran it successfully last week. This week, it won\'t run. I get back the following error message:

Traceback (most recent call          


        
5条回答
  •  北海茫月
    2021-02-13 05:33

    pip install urllib3 
    

    The reason it broke is that I had installed an incompatible version of urllib3 as a transient dependency of awscli. You'll see such conflicts when you rerun the install.

提交回复
热议问题