当前位置: 首页 > 工具软件 > Pyperclip > 使用案例 >

Pyperclip could not find a copy/paste mechanism for your system解决方法补充

米丰
2023-12-01

 在linux使用剪贴板时报错,

pyperclip.PyperclipException:
    Pyperclip could not find a copy/paste mechanism for your system.
    For more information, please visit https://pyperclip.readthedocs.io/en/latest/index.html#not-implemented-error'

网上普遍建议:

  • sudo apt-get install xsel         #to install the xsel utility.
  • sudo apt-get install xclip       #to install the xclip utility.
  • pip install gtk                               #to install the gtk Python module.这是官网的建议,我安的是pygtk
  • pip install PyQt4                          #to install the PyQt4 Python module. 这是官网的建议,我安的是PyQt5

但是之后仍然不管用,查到了这个答案,python - Cant get pyperclip to use copy and paste modules on python3 - Stack Overflow按照提示进行检测,

xclip

显示 Error: No display: (null),

echo $DISPLAY

显示空,

然后找到一个解决方法(原文:Linux echo $DISPLAY输出为空)是定义:

export DISPLAY=:0.0 

可以直接在命令行定义,也可以写进bashprofile一劳永逸.

 类似资料: