Reputation: 41
import tabulate is working from command prompt, but not from IDLE GUI in python 2.7 from IDLE GUI I'm gettng the following error :
import tabulate
ImportError: No module named tabulate
Upvotes: 0
Views: 390
Reputation: 5347
Try this
from tabulate import tabulate
Upvotes: 2