模拟按键在 mac (python) 上不起作用

Simulating key presses aren't working on mac (python)

我有这段代码可以模拟按键,但它不起作用,我也不知道为什么。我的 IDE 有权在系统偏好设置中监控键盘输入。当我使用 keyboard.type("sentence") 时,它可以工作,但不会输入前两个字符。我很困惑为什么。感谢任何帮助

import time
from pynput.keyboard import Key, Controller


keyboard = Controller()
time.sleep(2)
keyboard.press('a')
keyboard.release('a')

您的 IDE 是否有权限:系统 preferences/Security & Privacy/Accessibilty? (macOS)