I'm presuming you are using python3.
First of all, type help('modules')
in your python shell. This should return all modules that are currently installed. If tkinter is not listed there, try the following:
import sysconfig
print(sysconfig.get_paths())
This will print out all the paths in which python is looking modules.
Move your tkinter module to one of the folders listed above (it should usually be site-packages but that might depend on your python set-up.
If that still doesn't solve the issue, try
sudo apt-get install python python-tk idle python-pmw python-imaging
If you are using ubuntu, python libraries should include tkinter. Hence the code above is re-installing python.
Hope I could help,
Narusan