Module not found Error even module is downloaded | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Module not found Error even module is downloaded

I'm using Windows 10 Python 3.9.6 pip 21.1.3 When I install speechRecognition module using pip it show me Requirements already satisfied But when I import it in my code it gave me Module not Found Error Images : 1. https://drive.google.com/file/d/1DtCHzWasvymR3jp6i6rY19iNHVFVW1eu/view?usp=drivesdk 2. https://drive.google.com/file/d/1TQEW9sA3wgLXPKESe4WNVOZRYRRS-9yc/view?usp=drivesdk

10th Jul 2021, 6:29 AM
Sahil
Sahil - avatar
3 Answers
+ 2
Actually it also looks like you're import should be import speech_recognition as sr
10th Jul 2021, 6:44 AM
ChaoticDawg
ChaoticDawg - avatar
+ 2
maybe check if the name of the package is well written in your code as you installed it. and you should try to check what @ChaoticDawg talked about
10th Jul 2021, 5:49 PM
Nshuti Alliance
Nshuti Alliance - avatar
+ 1
You probably made a virtual environment for your python project when you started it. Your venv probably doesn't have the requirement installed. Go to the packages tab in Pycharm for your project and see if it is listed. If not then then go to the settings for your project and add the module.
10th Jul 2021, 6:38 AM
ChaoticDawg
ChaoticDawg - avatar