在哪儿信任进程-python(MAC电脑)
本帖最后由 hgcjd666666 于 2022-11-9 23:26 编辑我找了一个python程序(修改剪切板)
运行时报错:This process is not trusted! Input event monitoring will not be possible until it is added to accessibility clients.
翻译了一下,说是 此进程不受信任!在将输入事件监视添加到可访问性客户端之前,将无法进行输入事件监视。
所以我想问一下,怎么信任进程? 本帖最后由 hgcjd666666 于 2022-11-10 19:45 编辑
# -*- coding:utf-8 -*-
try:
import pyperclip
except ModuleNotFoundError:
raise ModuleNotFoundError("未安装pyperclip库或pyperclip不完整")
pyperclip.copy("")# 清空剪切板
页:
[1]