You are not logged in.
Hi,
I'm launching python2 in a terminal, then :
>>> from Tkinter import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 39, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
ImportError: libtk8.6.so: cannot open shared object file: No such file or directory
I've installed python2 from pacman without issues.
Last edited by DanielD (2013-11-07 08:53:48)
Offline
tk is an optional dependency: https://www.archlinux.org/packages/extr … 4/python2/
Offline
Did you install TkInter (tk) before trying this?
Last edited by COPE (2013-11-06 17:20:23)
Offline
I didn't know Tk was optionnal ! Thank you guys !
Offline
When you install packages with pacman, it tells you about the optional dependencies for the packages you've just installed.
Offline