ImportError: No module named pywintypes

后端 未结 6 1547
再見小時候
再見小時候 2020-12-15 23:10

I am working to make a small keylogger with Python, by using the pyHook, pythoncom and Pywin32 modules. Here is my code:

import pyHook, pythoncom, sys, loggi         


        
6条回答
  •  温柔的废话
    2020-12-15 23:14

    I have had this error when trying to create a python service using pywin32 module. I copied pythoncom38.dll and pywintypes38.dll into the root directory of the project and it solved the issue.

提交回复
热议问题