Después de una actualización de pip, pip ha dejado de funcionar por completo.
Z:\>pip install matplotlib
Traceback (most recent call last):
File "c:\program files\python37\lib\runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "c:\program files\python37\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:\Program Files\Python37\Scripts\pip.exe\__main__.py", line 9, in <module>
TypeError: 'module' object is not callable
Cualquier ayuda por favor?
Editar: estoy trabajando en Windows 10
python -m pip
python -m pip
asegúrate de que pip
invocar siempre esté asociado con el python
que estás ejecutando
pip
falla, mientras que python -m pip
tiene éxito. Este es un sistema multi-python (y pip3
tiene éxito también python3 -m pip
). Me preguntaba si pip
se usó como está, si usa uno diferente PYTHONPATH
o si hace algo diferente.
python -m pip install matplotlib
informar el error?