No module named 'pydruid'

929 Views Asked by At

I'm following this tutorial from Druid which is to connect jupyter notebook to druid. When i ran it keep giving me ModuleNotFoundError: No module named 'pydruid' when i already installed the requirement.

1

There are 1 best solutions below

2
On BEST ANSWER

Seems like pydruid 0.6.0 has this issue. Try installing the previous version of pydruid.

pip install pydruid==0.5.9 for workaround. Refer here for the same issue in github.

enter image description here