如何赋予 Python 的“键盘”和“鼠标”模块 root 权限来运行?

如何赋予 Python 的“键盘”和“鼠标”模块 root 权限来运行?

我使用它的键盘和鼠标模块制作了一个简单的 Python 脚本,目的是节省我几分钟的点击和打字时间。在进行了一些调试后,我运行了该脚本。令人失望的是,运行时,终端返回:Root privileges are required to use this module.我尝试在 root 终端中使用相同的脚本运行chmod,但这也不起作用。我是 root 用户,这让我更加困惑。我已经在 Stackoverflow 上发布了这个问题,但没有成功。我使用的是 Ubuntu 20.04 和 Python 3.8

答案1

我在阅读有关键盘和鼠标模块的文章时偶然发现了这一点。我注意到还没有回复,而且已经过去了几个月。如果您仍然遇到同样的问题,您要查找的命令是:

sudo python3 /path/to/file.py

man sudo

sudo allows a permitted user to execute a command as the superuser
or another user, as specified by the security policy.

相关内容