Rishi Jaiswal
Rishi Jaiswal

Reputation: 41

working from command prompt but not from IDLE GUI in python 2.7

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 :

ImportError: No module named tabulate

Upvotes: 0

Views: 390

Answers (1)

Ajay
Ajay

Reputation: 5347

Try this

from tabulate import tabulate

Upvotes: 2

Related Questions