Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Python SpeechRecognition package [duplicate]

Can someone please advise me how to download and install speech_recognition?

I am currently using Python 2.7.12 on Windows 10.

Should I use the command prompt? If yes, can you please show me exactly what I should write in the commands.

I wrote pip install SpeechRecognition in the command prompt. But am getting this error:

'pip' is not recognized as an internal or external command, operable program or batch file'

like image 364
Blue Berry Avatar asked Mar 10 '23 15:03

Blue Berry


1 Answers

You can try this

c:\python27\scripts\pip.exe install SpeechRecognition 

now if that doesn't work its probably that your pip is broken you'll need to uninstall python and install it again.

You can also run this from cmd: (for those getting an error with the above dir..)

 python -m pip install SpeechRecognition

It hope it will work

like image 70
Ayyoub Avatar answered Apr 26 '23 01:04

Ayyoub