Python error ImportError No module named SpeechRecognition

0 votes

I have the following python code on pycharm:

import SpeechRecognition as sr

r = sr.Recognizer()

with sr.Microphone() as source:
    audio = sr.listen(source)

I get an error saying the module is not installed:

    import SpeechRecognition as sr
ImportError: No module named SpeechRecognition

But when I list all the packages and modules installed, it says I have the package installed:\

SpeechRecognition             3.8.1
Oct 3, 2019 in Python by Hannah
• 18,570 points
4,778 views
I have done this way but it failed .

1 answer to this question.

0 votes

Hi @Hannah, replace 

import SpeechRecognition as sr

with

import speech_recognition as sr
answered Oct 3, 2019 by Yamini
the error still occurs after replacing

Hey, @There,

Are you facing the exact same error which is mentioned above? Post your error and workaround, please.

Related Questions In Python

0 votes
1 answer

Python error "ImportError: No module named pygame.locals"

You need to download and install the ...READ MORE

answered Jun 18, 2019 in Python by Greg
6,164 views
0 votes
2 answers

Python error " import requests ImportError: No module named requests"

Hello, Open Cmd or Powershell as Admin. type pip ...READ MORE

answered Nov 28, 2020 in Python by Rohan
• 200 points
16,883 views
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,727 views
0 votes
2 answers

Python error “ImportError: No module named”

use the dir() function for particular import ...READ MORE

answered Jun 6, 2020 in Python by sahil
• 580 points
15,482 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
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

answered Apr 11, 2018 in Python by hemant
• 5,790 points
3,410 views
0 votes
1 answer
0 votes
2 answers

Python error "ImportError: No module named 'tkinter'"

sudo apt-get install python3-tk Then, >> import tkinter # ...READ MORE

answered Nov 9, 2019 in Python by Icetutor
• 160 points
24,272 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