How do I fix 'ImportError: cannot import name IncompleteRead'?

前端 未结 16 1366
暖寄归人
暖寄归人 2020-11-28 18:22

When I try to install anything with pip or pip3, I get:

$ sudo pip3 install python3-tk
Tra         


        
16条回答
  •  悲哀的现实
    2020-11-28 19:04

    On Ubuntu 14.04 I resolved this by using the pip installation bootstrap script, as described in the documentation

    wget https://bootstrap.pypa.io/get-pip.py
    sudo python get-pip.py
    

    That's an OK solution for a development environment.

提交回复
热议问题