Search code examples
pythonjupyter-notebookdruidpydruid

No module named 'pydruid'


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.


Solution

  • 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