尝试安装 pyttsx3 库时出错

Error while trying to install pyttsx3 library

我试图在 windows 10 上使用 pip 安装 pyttsx3 时出现此错误以及我包含的非常粗的红色代码

Collecting comtypes; platform_system == "Windows"
  Using cached comtypes-1.1.7.zip (180 kB)
Using legacy setup.py install for comtypes, since package 'wheel' is not installed.
Installing collected packages: comtypes, pyttsx3
    Running setup.py install for comtypes ... error```


[1]: https://i.stack.imgur.com/xRdBx.png

尝试更新安装工具,然后重试安装:

pip install -U setuptools
pip install pyttsx3

如果不能解决您的问题,您也可以尝试指定 pyttsx3 的版本

pip install -U pyttsx3==2.71

如果这也不起作用,请尝试直接从官方 github 存储库安装它:

pip install git+https://github.com/nateshmbhat/pyttsx3

如果仍然无效,请考虑更改您的 python 版本。

我想这会解决你的问题

pip install wheel

然后,

pip install pyttsx3