web-dev-qa-db-ja.com

ipython3の%pasteマジック関数

ipython3を使用してUbuntuにインストールされたapt-getを使用しています。貼り付けマジック関数を使用できません。Tkinterが欠落していると文句を言います。しかし、私はTkinterを持っており、同じことがipython(2)でも正常に機能します。何が得られますか?

Python 3.2.3 (default, Oct 19 2012, 19:53:16) 
Type "copyright", "credits" or "license" for more information.

IPython 0.13.1.rc2 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: %paste
ERROR: Getting text from the clipboard on this platform requires Tkinter.
15
wim

minrkのコメントで正しい方向に進んだので、次のパッケージで修正しました。

Sudo apt-get install python3-tk

28
wim

さらに明確にするために: wim の答えはpython2.7でも機能し、すべてのバージョンをカバーするには、次のコマンドを実行するだけです。

Sudo apt-get install python-tk

cespinoza によってとらえられたように

4