My code is:
import texttable as tt
tab = tt.TextTable()
header = ['Manager', 'Club', 'Year']
tab.header(header)
print tab.draw()
During execution the following error occurs.
ImportError: No module named texttable
Can anyone help me with the steps to install texttable or with other solutions.