お世話になります。
「Automate The Boring Stuff With Python」を学習してまして
paperclip modulesをインストールする下りがあるのですが
import pyperclip pyperclip.copy('Hello world!')
を実行すると以下のエラーが出ます。
↓
Pyperclip could not find a copy/paste mechanism for your system.
For more information, please visit https://pyperclip.readthedocs.io/en/latest/introduction.html#not-implemented-error
言われた通りのURLにアクセスし
「Not Implemented Error」見出し部分の以下のコマンドをインストールしました。
*apt-getが上手く行きませんでyumでインストールしました。
1.sudo apt-get install xsel 2.sudo apt-get install xclip 3.pip install gtk 4.pip install PyQt4
ここで問題発生で、3,4のインストールがうまくいかず以下のコメントが出ます。
↓
3.→Could not find a version that satisfies the requirement gtk (from versions: )
No matching distribution found for gtk
4.→ Could not find a version that satisfies the requirement PyQt4 (from versions: )
No matching distribution found for PyQt4
こちらのエラーの解決法は正直調べてもクリティカルな内容が出てきませんでした。
で、話が先頭に戻るのですがpyperclip.copy()が思い通りの挙動にならないので
上記の情報踏まえまして詳しい方いらっしゃいましたら解説お願い致します。
*参考までに環境はPython3.6.1/CentOS7/使用ハードはMacです。
回答1件
あなたの回答
tips
プレビュー