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