I was trying to install PyAudio in order to use SpeechRecognition but, in the mean time, I updated pip as well to its lates version, now running pip install --user [name]
generates the following error:
C:\Users\carlo>pip install --user PyAduio
Traceback (most recent call last):
File "c:\program files (x86)\python38-32\lib\runpy.py", line 192, in _run_module_as_main
return _run_code(code, main_globals, None,
File "c:\program files (x86)\python38-32\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:\Program Files (x86)\Python38-32\Scripts\pip.exe\__main__.py", line 9, in <module>
TypeError: 'module' object is not callable
I updated pip because it came out with a warning:
WARNING: You are using pip version 19.2.3, however version 19.3.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
Any ideas on what could be going wrong?
Thank you.