python error r sr Recognizer AttributeError module object has no attribute Recognizer

0 votes

I have this tiny bit of code:

import speech_recognition as sr

r = sr.Recognizer()

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

End up with the following error:

    r = sr.Recognizer()
AttributeError: 'module' object has no attribute 'Recognizer'

Oct 3, 2019 in Python by Hannah
• 18,520 points
7,478 views
if this wont work just reinstall the package in software(Eg pycharm)

1 answer to this question.

0 votes
Hey @Hannh, I had a similar issue. Make sure your file name is not speech_recognition. In my case, I was importing my own file instead of importing the module. My file name was speech_recognizion.py.
answered Oct 3, 2019 by Farheen
thanks it worked for me :))))
thx its worked, great !!!
hello buddy i also have same error but my file name is test.py

can u help
Are you talking about the file in which we are importing speech_recognition module?

If so then in my case it's not such and then also i'm getting the same error..

Can you tell what can be the issue ??

Related Questions In Python

0 votes
1 answer

Getting AttributeError: 'module' object (scipy) has no attribute 'misc' in Python. How to solve this?

>>> import scipy >>> scipy.misc Traceback (most recent call ...READ MORE

answered Dec 24, 2018 in Python by Nymeria
• 3,560 points
9,796 views
0 votes
2 answers

Python Pandas error: AttributeError: 'DataFrame' object has no attribute 'rows'

Try this: data=pd.read_csv('/your file name', delim_whitespace=Tru ...READ MORE

answered Dec 10, 2020 in Python by anonymous
• 82,840 points
133,449 views
0 votes
1 answer

Python error "AttributeError: 'str' object has no attribute 'casefold'"

Check your python version. Casefold is possible ...READ MORE

answered Jul 4, 2019 in Python by Yesha
6,703 views
0 votes
1 answer

Python error "AttributeError: '_Screen' object has no attribute 'onkeypress'"

Instead of  wn.onkeypress(go_up, "w") Try wn.onkey(go_uo, " ...READ MORE

answered Jul 5, 2019 in Python by Pooja
5,365 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,647 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
4,419 views
0 votes
1 answer

Python error "AttributeError: '_Screen' object has no attribute 'mainloop'" python module turtle

Hey @Nagya, replace  wn.mainlopp() with turtle.mainloop() ...READ MORE

answered Jun 19, 2019 in Python by Faiza
7,529 views
+1 vote
3 answers

Python error "AttributeError: 'Turtle' object has no attribute 'Shape'"

Hey @Nagya, replace python.Shape("Square") with the following: python.shape("square") Python is case ...READ MORE

answered Jun 19, 2019 in Python by Faiza
21,949 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