时间:2020-10-21 11:12:00 | 栏目:Python代码 | 点击:次
我使用的python版本是3.5.2
今天想做个语音读取的小脚本,在网上查了一下发现python里有个pyttsx可以识别文字,
打算通过pip3 install pyttsx安装包,结果报错,
然后试了一下发现不行,去网上查了一下发现pyttsx3才行,
pip3 uninstall pyttsx3
pip3 install pyttsx3成功
这里是参考网页:https://pyttsx3.readthedocs.io/en/latest/ 点击打开链接
代码如下:
# -*- coding: utf-8-*- import pyttsx3 engine = pyttsx3.init() engine.say("人类真帅") engine.runAndWait( )
运行了一下,发现还需要安装依赖包pypiwin32
pip3 install pypiwin32成功
再次运行,它成功的说出了'人类真帅'