前提
python 3.8.1
Django 3.2.13
Ubuntu 20.04LTS
view.py内でpyperclipのコピーを記述している。
開発サーバー環境では問題なく動作するがubuntu環境では下記のエラーを吐き出した。
発生している問題・エラーメッセージ
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
該当のソースコード
django
pyperclip.copy('hoge')
試したこと
上記URL記載で下記4つのパッケージのうち1つをインストールとの指示があり
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.
pip install PyQt4 to install the PyQt4 Python module.
このうち上2つをインストールしたが解決しなかった。
pipのほうはインストールできず。
インストール後pythonのrestartなどが必要なのでしょうか。
ご教授のほどよろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
0 コメント