% Paste Magic-Funktion auf ipython3

15

Ich benutze ipython3, auf Ubuntu mit installiert apt-get. Ich kann die Paste Magic-Funktion nicht verwenden, sie beklagt sich über das Fehlen Tkinter. Aber ich habe Tkinterund das gleiche funktioniert gut auf Ipython (2). Was gibt?

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.
wim
quelle
Von was bekommst import Tkinter; print(Tkinter)du
11.
/usr/lib/python2.7/lib-tk/Tkinter.pycam 2.7, Importfehler auf ipython3
wim

Antworten:

27

minrk comment hat mich auf den richtigen Weg gebracht und ich habe es mit dem folgenden Paket behoben.

sudo apt-get install python3-tk

wim
quelle
12
+1 ist das gleiche für python2.7: sudo apt-get install python-tk
chespinoza
%pasteDosis funktioniert auch nach der Installation nicht python3-tk. %cpastedose
7kemZmani
4

Um zusätzliche klar: wim ‚s Antwort auch für python2.7 funktioniert, alle Versionen einfach laufen zu decken:

sudo apt-get install python-tk

wie von Cespinoza entzogen

hallo_hier_andy
quelle