When I try to run the basic demo code:
from espeakng import ESpeakNG
esng = ESpeakNG()
esng.say('Hello World!')
I get this error:
Traceback (most recent call last):
File "xxxxxxx.py", line 1, in <module>
from espeakng import ESpeakNG
ImportError: cannot import name 'ESpeakNG' from 'espeakng' (C:\Users\XXXXXX\AppData\Roaming\Python\Python37\site-packages\espeakng\__init__.py)
Any suggestions? If it matters, I'm on Windows 10, and I can access espeak-ng.exe from the regular command line, so it must be in PATH already. Thanks!