我正在尝试在带有 Python 2.7 的 Ubuntu Linux(64 位,PC)上使用 pyttsx。我已经成功使用 pip 安装包
$sudo -H pip install pyttsx
$pip list
...
pyttsx (1.1)
...
当我尝试导入它时,导入调用失败
$ python
Python 2.7.12 (default, Nov 20 2017, 18:23:56)
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyttsx
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named pyttsx
我不知道为什么我会得到这个。当我在 Stack Overflow 上搜索问题时,我遇到了另一个关于 Raspberry Pi 上相同错误消息的实例。但是那里提到的解决方案并没有在我的电脑上带来分辨率,所以我认为它不相关。
我错过了什么阻止导入成功的任何理想?