Skip to content Skip to sidebar Skip to footer

Nosuchmoduleerror: Can't Load Plugin: Sqlalchemy.dialects:teradata

Hi I am attempting to use sqlalchemy-teradata to write a pandas dataframe into a Teradata table. Here is the code I am using: from sqlalchemy import create_engine import sqlalchem

Solution 1:

I would first of all check if the packages are installed correctly:

$ python
>>>import teradata>>>import sqlalchemy_teradata

Does this give any error messages?

Also, I believe you only need the sqlalchemy-teradata package, not teradatasqlalchemy.

Post a Comment for "Nosuchmoduleerror: Can't Load Plugin: Sqlalchemy.dialects:teradata"