当前位置: 首页 > 工具软件 > gTTS > 使用案例 >

树莓派安装gTTS运行遇到ImportError: cannot import name InsecureRequestWarning

傅奕
2023-12-01

树莓派安装gTTS运行运行时遇到了如下错误:

        from requests.packages.urllib3.exceptions import InsecureRequestWarning

ImportError: cannot import name InsecureRequestWarning

这是因为已经安装的requests库和gTTS版本对应不上。

解决: 更新requests库,

pip install -U requests

 类似资料: