树莓派安装gTTS运行运行时遇到了如下错误:
from requests.packages.urllib3.exceptions import InsecureRequestWarning
ImportError: cannot import name InsecureRequestWarning
这是因为已经安装的requests库和gTTS版本对应不上。
解决: 更新requests库,
pip install -U requests
树莓派安装gTTS运行运行时遇到了如下错误:
from requests.packages.urllib3.exceptions import InsecureRequestWarning
ImportError: cannot import name InsecureRequestWarning
这是因为已经安装的requests库和gTTS版本对应不上。
解决: 更新requests库,
pip install -U requests