ModuleNotFoundError
ladakgit opened this issue · 4 comments
ladakgit commented
Hi, I am using Windows where pip install requests was completed successfully. On the first line of my code as below I get the error.
from airtable import airtable
ModuleNotFoundError Traceback (most recent call last)
in
----> 1 from airtable import airtable
ModuleNotFoundError: No module named 'airtable'
bilalkhann16 commented
I had this same error. Try this:
from airtable.airtable import Airtable
mendykrauss commented
You just have to import airtable
. No need for from airtable import airtable
or from airtable.airtable import Airtable
Shaan-Lashkari commented
Try to import pyairtable, it worked for me
Shaan-Lashkari commented
somewhat like
pip install pyairtable