pip no longer working after update error 'module' object is not callable

前端 未结 10 871
予麋鹿
予麋鹿 2020-11-28 04:31

After a pip update, pip has stopped working completely.

Z:\\>pip install matplotlib
Traceback (most recent call last):
  File \"c:\\program files\\python3         


        
10条回答
  •  -上瘾入骨i
    2020-11-28 04:50

    This worked for me, uninstall pip 19.3.1 and replace with 19.0.3, error gone.

    python -m pip install pip==19.0.3 --user
    

提交回复
热议问题