0

显示的错误是:

Type "help", "copyright", "credits" or "license()" for more information.
>>> 
================= RESTART: C:/Users/user/Desktop/mywhatsapp.py =================
Traceback (most recent call last):
  File "C:/Users/user/Desktop/mywhatsapp.py", line 1, in <module>
    from pynput.keyboard import Key, Controller
ModuleNotFoundError: No module named 'pynput'
>>> 

这是我的代码:

from pynput.keyboard import Key, Controller
import time
Keyboard = Controller()
time.sleep(5)
while True:
   for letter in "This my Whatsapp spam bot.":
       Keyboard.press(letter)
       Keyboard.release(letter)
   Keyboard.press(Key.enter)
   Keyboard.release(Key.enter)

我按照https://www.journaldev.com/30076/install-python-windows-10上的下载说明进行操作

非常感激

4

2 回答 2

0

我希望你尝试过

pip install pynput

如果您安装了 anaconda,则 pip 安装路径设置为 ../anaconda/lib/packages。在终端上再次运行pip install pynput 。如果它已经安装,它将显示路径。然后您可以决定使用哪个解释器。

于 2020-09-03T14:46:18.160 回答
0

我有同样的错误,修复它使用

pythom -m pip install pynpt

如果您使用的是 python3,请将 pip 更改为 pip3

否则,如果您使用的是 conda 环境,请尝试 SUDIPTA 的建议

于 2020-09-03T14:50:02.010 回答