Pyperclip을 사용할 때 다음과 같은 에러가 발생할 때가 있다.
Pyperclip could not find a copy/paste mechanism for your system.
필요한 패키지가 리눅스에 설치되어 있지 않아서 그렇다.
필요한 패키지를 설치해주자.
sudo apt-get install xsel
sudo apt-get install xclip
pip install gtk
pip install PyQt4
이 패키지는 지저분한 패키지를 같이 설치한다.
그래서 꼭 써야하는 것이 아니라면 안쓰는 것이 좋다.
참조: https://pyperclip.readthedocs.io/en/latest/