Google 文本转语音 gTT 未按预期工作
Google text- to-Speech gTTs not working as expected
我使用 "pip3 install gTTs" 安装了 gtts,但是每当我 运行 程序时都会收到此错误。
from gtts import gTTs.
ImportError: cannot import name 'gTTs'
这是使用 speak() 作为模块生成 error.I 的代码部分。
from os import system
from gtts import gTTs
def speak(text):
tts = gTTS(text,lang = 'en')
tts.save("speech.mp3")
system("mpg321 speech.mp3")
我使用 "pip3 freeze" 检查是否安装了 gtts,它在包中显示了 gtts
将from gtts import gTTs
替换为from gtts import gTTS
我使用 "pip3 install gTTs" 安装了 gtts,但是每当我 运行 程序时都会收到此错误。
from gtts import gTTs. ImportError: cannot import name 'gTTs'
这是使用 speak() 作为模块生成 error.I 的代码部分。
from os import system
from gtts import gTTs
def speak(text):
tts = gTTS(text,lang = 'en')
tts.save("speech.mp3")
system("mpg321 speech.mp3")
我使用 "pip3 freeze" 检查是否安装了 gtts,它在包中显示了 gtts
将from gtts import gTTs
替换为from gtts import gTTS