在我的Raspberry Pi3上使用GTT(Google文本到语音转换)有困难。我只是做了

sudo pip3 install gTTS

安装它。但是当我运行代码时,我发现这个错误:
File "interface.py", line 7, in <module>

from gtts import *

File "/usr/local/lib/python3.4/dist-packages/gtts/\__init__.py", line 2, in <module>

from .tts import gTTS

File "/usr/local/lib/python3.4/dist-packages/gtts/tts.py", line 4, in <module>
 from requests.packages.urllib3.exceptions import InsecureRequestWarning

ImportError: cannot import name 'InsecureRequestWarning'

为了解决我的问题
sudo easy_install --upgrade pip

然后我卸载并再次安装了GTTS,但问题仍然存在。
非常感谢你的帮助!:(
PS:我已经安装了python vlc和mutagen来运行GTT(就像在Windows设备上一样)。

最佳答案

只需更新库

pip install -U requests

08-26 12:21