I am using Ubuntu, and python 2.7. Is there anybody help me overcome the following error?
ImportError: No module named foxhound.utils.vis
If you have already foxhound installed you should use:
from foxhound.vis import grayscale_grid_vis, unit_scale
because vis module is in the foxhound package and not in foxhound.utils (utils is also a module, not a package). See the foxhound structure here.
Edit
To install foxhound:
There run
python setup.py install
More info on installing python modules.