本文介绍了导入错误:没有系统模块 'pywintypes' (pywintypes39.dll)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在用 python 制作虚拟助手,但看到以下错误.

I was making a virtual assistant in python, but I see the following error.

ImportError: No system module 'pywintypes' (pywintypes39.dll)

我使用的是 Windows 10 和 Python 3.9

I am using Windows 10 and Python 3.9

这是代码

import speech_recognition as sr
import pyttsx3
listner=sr.Recognizer()
engine=pyttsx3.init()
engine.say('Hello Vishal. I am Cisco')
engine.say('What do you want me to do?')
engine.runAndWait()
try:
    with sr.Microphone() as source:
            print('listening...')
            voice=listner.listen(source)
            command = listner.recognize_google(voice)
            command=command.lower()
            if "cisco" in command:
                 print(command)
except:
    print('Something went wrong')

当我运行这个程序时,控制台也会打印:

Also when I run this program The console prints this:

    enter code hraceback (most recent call last):
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\pyttsx3\__init__.py", line 20, in init
    eng = _activeEngines[driverName]
  File "C:\Program Files (x86)\Python\lib\weakref.py", line 134, in __getitem__
    o = self.data[key]()
KeyError: None

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "c:\Users\visha\Documents\Python\Basic.py", line 4, in <module>
    engine=pyttsx3.init()
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\pyttsx3\__init__.py", line 22, in init
    eng = Engine(driverName, debug)
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\pyttsx3\engine.py", line 30, in __init__
    self.proxy = driver.DriverProxy(weakref.proxy(self), driverName, debug)
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\pyttsx3\driver.py", line 50, in __init__
    self._module = importlib.import_module(name)
  File "C:\Program Files (x86)\Python\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
  File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 790, in exec_module
  File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\pyttsx3\drivers\sapi5.py", line 10, in <module>
    import pythoncom
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\pythoncom.py", line 2, in <module>
    import pywintypes
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\win32\lib\pywintypes.py", line 105, in <module>
    __import_pywin32_system_module__("pywintypes", globals())
  File "C:\Users\visha\AppData\Roaming\Python\Python39\site-packages\win32\lib\pywintypes.py", line 87, in __import_pywin32_system_module__
    raise ImportError("No system module '%s' (%s)" % (modname, filename))
ImportError: No system module 'pywintypes' (pywintypes39.dll)
PS C:\Users\visha\Documents\Python> ere

我是初学者,所以我没有太多想法.预先感谢您的帮助

I am a beginner so I don't have much idea.Thanks in advance for your help

推荐答案

在命令提示符下键入 python -m site 以获取站点包.现在导航到 site-package 文件夹并转到 pywin32_system32 以复制 pythoncom39.dllpywintypes39.dll

On Command prompt type python -m site to get the site-package.Now navigate to the site-package folder and go to pywin32_system32 to copy pythoncom39.dll and pywintypes39.dll

导航一步回到 site-package 文件夹并获得 win32 并粘贴文件.

Navigate one step back to site-package folder and got win32 and paste the file.

这篇关于导入错误:没有系统模块 'pywintypes' (pywintypes39.dll)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 10:15