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
With a fresh python environment, if you do pip install pydruid and then do python -c "from pydruid.db import connect" you get ModuleNotFoundError: No module named 'sqlalchemy'.
This is because sqlalchemy is not a required dependency (only an extra):
With a fresh python environment, if you do
pip install pydruid
and then dopython -c "from pydruid.db import connect"
you getModuleNotFoundError: No module named 'sqlalchemy'
.This is because sqlalchemy is not a required dependency (only an extra):
pydruid/setup.py
Lines 7 to 12 in 893506b
However, pydruid.db.exceptions does an import of it without checking if it is installed:
pydruid/pydruid/db/exceptions.py
Line 1 in 893506b
The text was updated successfully, but these errors were encountered: