airtable.py icon indicating copy to clipboard operation
airtable.py copied to clipboard

ModuleNotFoundError

Open ladakgit opened this issue 4 years ago • 4 comments

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'

ladakgit avatar Nov 13 '20 14:11 ladakgit

I had this same error. Try this: from airtable.airtable import Airtable

bilalkhann16 avatar Apr 02 '21 21:04 bilalkhann16

You just have to import airtable. No need for from airtable import airtable or from airtable.airtable import Airtable

mendykrauss avatar Dec 09 '22 17:12 mendykrauss

Try to import pyairtable, it worked for me

Shaan-Lashkari avatar Apr 02 '23 08:04 Shaan-Lashkari

somewhat like pip install pyairtable

Shaan-Lashkari avatar Apr 02 '23 08:04 Shaan-Lashkari