'Pydub installation problem - ModuleNotFoundError: No module named 'pydub'
I need an automatic speech transcription tool for my video editing project. I am using python speech recognition library. To split big audio file into small fractions I installed pydub and added its functionality in my script. Although I checked and solved the env-path issues of ffmpeg it still giving the following error:
Traceback (most recent call last):
File "..\VideoEditing\speech_transcript.py", line 4, in <module>
from pydub import AudioSegment
ModuleNotFoundError: No module named 'pydub'
What could be done to solve this issue, any ideas? Many thanks..
Solution 1:[1]
Finally I found the solution. Just changed the directory of the downloaded package of pydub to:
"C:\Users\Username\AppData\Local\Programs\Python\Python36\Lib\site-packages".
Many thanks.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Hüseyin Kara |
