I developed some different functions and imported several different modules. All times, when not installed I just run pip install 'something' and I was able to call it via import 'something'.
I'm trying to work with some text to speech engines and I tried already gTTS, pyttsx and pyttsx3. I installed them all successfully, but I was not able to import the module.
I did look for the module in Python's library directories and I found them three over there. I always get the: ModuleNotFoundError: No module named 'gtts' or ModuleNotFoundError: No module named 'pyttsx'.
How can I solve it? Is something related to Spyder's version (mine 3.7) or Windows 10?
Thanks!