ModuleNotFoundError No module named speech recognition Not able to install speech recognition in python

+1 vote

I am trying to run a script which uses speech_recognition module. I am trying to install this module using pip but its not working. 

$pip install speech-recognition
Collecting speech-recognition
  Could not find a version that satisfies the requirement speech-recognition (from versions: )
No matching distribution found for speech-recognition

Can someone tell me how to install this module?

Nov 28, 2018 in Python by digger
• 26,740 points

edited Jun 25, 2020 by MD 39,883 views
ModuleNotFoundError: No module named 'winspeech'

please give me the answer for this

Hey. It worked for me.

Try upgrading pip first using the below command:

python -m pip install --upgrade pip 

And then run 

pip install winspeech
Thank you so much

3 answers to this question.

+2 votes
Best answer

Hey. You have to use SpeechRecognition as module name to install this module. Try this:

pip install SpeechRecognition
answered Nov 28, 2018 by Omkar
• 69,210 points

selected Dec 31, 2019 by Kalgi
very useful, tks
Hi!

Please upvote the answer, if it has helped you :)

When i typed it , it said Syntax error : invalid syntax      on Python 3.6.1 on Mac OS X

Hey,

Please show exactly what you typed. First, make sure you have all the requirements listed in the “Requirements”:

  1. Install Xcode in Unix Development mode.
  2. Install Xcode - Command Line tools (Type 'Xcode-select —install' in the terminal )
  3. Install Port or Brew (port  [or] Brew  )
  4. sudo brew install portaudio [or] sudo port install portaudio (for loading mic drivers)
  5. sudo pip install pyaudio [or] sudo easy_install install pyaudio (Mic Sources)
  6. sudo pip install SpeechRecognition [or] sudo easy_install install SpeechRecognition
  7. sudo port install FLAC.

Thank you so much
+2 votes
The pip library is called SpeechRecognition, not speech_recognition camelCase ftw!
answered Jan 24, 2019 by anonymous
Haha... #FTW
0 votes
use pip install winSpeech

after that SpeechRecognition  automaticly install
answered Aug 14, 2020 by anonymous

Related Questions In Python

0 votes
1 answer
0 votes
1 answer

how to solve the error : "ImportError: No module named Tkinter" in python.

Hi@Umama, If you are using Linux system, then ...READ MORE

answered Apr 27, 2020 in Python by MD
• 95,440 points
12,726 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,023 views
0 votes
1 answer
0 votes
1 answer

Python Error: ModuleNotFoundError: No module named '<moduleName>'

Python3 and pip are most likely pointing ...READ MORE

answered Nov 22, 2020 in Python by Gitika
• 65,910 points
6,455 views
0 votes
1 answer

Not able to take input in python

You are using python 2 in which ...READ MORE

answered Jan 31, 2019 in Python by Omkar
• 69,210 points
3,281 views
+3 votes
2 answers

how to print array integer without [] bracket in python like result = 1,2,3,4,5

Hey @abhijmr.143, you can print array integers ...READ MORE

answered Aug 5, 2018 in Python by Omkar
• 69,210 points

edited Aug 8, 2018 by Omkar 7,609 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP