Python

error) Pyperclip could not find a copy/paste mechanism for your system.

summerorange 2022. 8. 29. 01:35
반응형

clipboard로 자동으로 저장할 수 있는 파이썬 라이브러리 중 하나인 Pyperclip을 임포트해서 쓰니 에러가 났다.

import pyperclip
pyperclip.copy(variable)

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 

 

Welcome to Pyperclip’s documentation! — Pyperclip 1.5 documentation

© Copyright 2014, Al Sweigart Revision 943372e2.

pyperclip.readthedocs.io

여기에 들어가서 확인해보니

Currently, this error should only appear on Linux.

라고 되어 있어서 리눅스에서만 있는 문제로 보임...

sudo apt-get install xsel

sudo apt-get install xclip

pip install gtk

pip install PyQt4

이 4개 중 하나를 설치하라고 해서 귀찮아서 그냥 넘어가려고 했다가... 해야죠... 에러 잡는 거...너무 행복하고 즐거워요...ㅎ

터미널 창 열고 관리자 권한인 sudo... 중 하나 로 했다. xclip이 그냥 적당해 보여서 했음. (저 중 아무거나 해도 상관 없는 것 같습니당)

저렇게 설치하고 치니 제대로 작동됩니다.

끗. 

반응형