Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

After a pip update, pip has stopped working completely.

Z:>pip install matplotlib
Traceback (most recent call last):
  File "c:program filespython37lib
unpy.py", line 193, in _run_module_as_main
    "__main__", mod_spec)
  File "c:program filespython37lib
unpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "C:Program FilesPython37Scriptspip.exe\__main__.py", line 9, in <module>
TypeError: 'module' object is not callable

Any help please?

Edit: I am working on windows 10

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

All credit for this goes to user han_solo, who left the answer as a comment, instead of as an answer:

Instead of pip install stdlib_list --user

use python -m pip install stdlib_list --user

Replace stdlib_list with matplotlib or whatever the name is of the package you want.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...