Cannot install on linux,i need help

i recently found about foxdot and i tried to install it on linux but i have a problem.when i type the command python -m FoxDot i am geeting this :

Traceback (most recent call last):
File “/usr/lib/python2.7/runpy.py”, line 163, in _run_module_as_main
mod_name, _Error)
File “/usr/lib/python2.7/runpy.py”, line 111, in _get_module_details
import(mod_name) # Do not catch exceptions initializing package
File “/home/george/.local/lib/python2.7/site-packages/FoxDot/init.py”, line 110, in
from .lib import *
File “/home/george/.local/lib/python2.7/site-packages/FoxDot/lib/init.py”, line 26, in
from .Workspace import get_keywords
File “/home/george/.local/lib/python2.7/site-packages/FoxDot/lib/Workspace/init.py”, line 3, in
from .Editor import *
File “/home/george/.local/lib/python2.7/site-packages/FoxDot/lib/Workspace/Editor.py”, line 18, in
from .tkimport import *
File “/home/george/.local/lib/python2.7/site-packages/FoxDot/lib/Workspace/tkimport.py”, line 10, in
from Tkinter import *
File “/usr/lib/python2.7/lib-tk/Tkinter.py”, line 42, in
raise ImportError, str(msg) + ‘, please install the python-tk package’
ImportError: No module named _tkinter, please install the python-tk package

any ideas please??

As suggested by the error message, you need to install the python-tk package, which the library that creates the GUI for FoxDot. This is included with standard Python distributions but it might not be if you are using the version of Python that came with your OS. You can install it by running:

apt-get install python-tk

In your terminal, or yum install python-tk I think depending on your distro.

thank you ryan ,i will try it today.