2013-10-13 58 views
1

我正在學習python.Now我正在嘗試部署一個應用程序,其中用戶將以voice.I的形式得到輸出。我帶有一個名爲pyttsx的庫。 所以我複製文件夾pyttsx在LIB folder.But它給我的錯誤作爲如何在python中包含pyttsx庫

Traceback (most recent call last): 
    File "C:\Python27\bot.py", line 10, in <module> 
    engine = pyttsx.init() 
    File "C:\Python27\lib\pyttsx\__init__.py", line 39, in init 
    eng = Engine(driverName, debug) 
    File "C:\Python27\lib\pyttsx\engine.py", line 45, in __init__ 
    self.proxy = driver.DriverProxy(weakref.proxy(self), driverName, debug) 
    File "C:\Python27\lib\pyttsx\driver.py", line 64, in __init__ 
    self._module = __import__(name, globals(), locals(), [driverName]) 
    File "C:\Python27\lib\pyttsx\drivers\sapi5.py", line 19, in <module> 
    import win32com.client 
    ImportError: No module named win32com.client 

包來了與其它文件夾和文件也

這裏是相同

樹結構├─ ──docs

├───pyttsx

 └───drivers 

└───pyttsx.egg-info

由於我是新來的蟒蛇任何人都可以告訴我如何包括圖書館 我使用Windows 7家庭premium.and安裝目錄存在於c。

回答

0

首先使用其Windows安裝程序安裝pywin32-extensions軟件包。 然後使用:

pip install pyttsx 

安裝pyttsx