You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found this from google while I needed to migrate a database from mssql to mysql,
after pip3 install etlalchemy and trying to run basic set up then i got error with module not found.
from etlalchemy import ETLAlchemySource, ETLAlchemyTarget
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-3-f974eee54d4e> in <module>
----> 1 from etlalchemy import ETLAlchemySource, ETLAlchemyTarget
//anaconda3/lib/python3.7/site-packages/etlalchemy/__init__.py in <module>
----> 1 from ETLAlchemySource import ETLAlchemySource
2 from ETLAlchemyTarget import ETLAlchemyTarget
ModuleNotFoundError: No module named 'ETLAlchemySource'
Im on macOS mojave 10.14.6 and anaconda python 3.7.3
any idea how to fix this ?
The text was updated successfully, but these errors were encountered:
you can change to “ from .ETLAlchemySource import ETLAlchemySource ” in etlalchemy.init file to fix it ;
but it still have a lot of error in python 3.7
I just saw this and thought I would respond even though it is really old. I have a branch that has changes to support python 3.x that may be helpful to you:
I found this from google while I needed to migrate a database from mssql to mysql,
after pip3 install etlalchemy and trying to run basic set up then i got error with module not found.
from etlalchemy import ETLAlchemySource, ETLAlchemyTarget
Im on macOS mojave 10.14.6 and anaconda python 3.7.3
any idea how to fix this ?
The text was updated successfully, but these errors were encountered: