Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

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

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...