I have the python3-tkinter installed, as shown below:
$ sudo yum install python3-tkinter
[sudo] password for abigail:
Loaded plugins: fastestmirror, langpacks
L
For tkinter installation for Python3.5:
yum -y install tkinter tcl-devel tk-devel
vim ......./Python3.5.#/Modules/Setup.dist
, remove the comment symbol before the following lines:
_tkinter _tkinter.c tkappinit.c -
-L/usr/local/lib \
-I/usr/local/include \
-ltk8.5 -ltcl8.5 \ #defualt as 8.2
-lX11
configure and install
./configure
make
make install