当我运行直接来自网站的代码时
import pyttsx
engine = pyttsx.init()
engine.say('Greetings!')
engine.say('How are you today?')
engine.runAndWait()
我收到此错误:
Traceback (most recent call last):
File "C:/Python27/pyttsx.py", line 1, in <module>
import pyttsx
File "C:/Python27\pyttsx.py", line 2, in <module>
engine = pyttsx.init()
AttributeError: 'module' object has no attribute 'init'
我在使用Python 2.7的Windows 7上使用 easy_install 进行安装。任何帮助表示赞赏
答案 0 :(得分:0)
您的文件名为pyttsx.py
,因此您import
拥有自己的文件,而不是已安装的模块。
重命名您的文件。