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

前端 未结 10 892
予麋鹿
予麋鹿 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条回答
  •  没有蜡笔的小新
    2020-11-28 05:05

    Similar to what @han_solo said, but if your running python3, instead of using:

    python -m pip install stdlib_list --user

    try using:

    python3 -m pip install stdlib_list --user

提交回复
热议问题