Install tkinter in python3.6 on Ubuntu
Install tkinter in python3.6 on Ubuntu +--------+-----------------------------------+ | OS | Ubuntu 12.04 | +--------+-----------------------------------+ | Python | 2.7, 3.2 and source installed 3.6 | +--------+-----------------------------------+ Since there are 2 versions of Python 3, anything installed from the repository doesn't work for Python 3.6. The latest version of Python in the repositories is 3.2, so I need source installs or through pip3.6. After starting python3.6 I tried to import tkinter , which gave the following error. Even though help('modules') returned a list of modules which included tkinter. python3.6 import tkinter help('modules') import tkinter ModuleNotFoundError: No module named '_tkinter' I tried doing the same in python3.2 and there were no errors . tkinter._tkinter gave the location of tkinter library for python3.2 python3.2 tkinter._tkinter I cd'd into the python3.6 directory which has all ...