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

前端 未结 10 888
予麋鹿
予麋鹿 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
    慢半拍i (楼主)
    2020-11-28 04:48

    in one case, from your python file do this edit to your IMPORT

    --import [MODULE]
    ++from [MODULE_NAME] import [MODULE]
    

提交回复
热议问题