3

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.

Dzakirin
  • 173
  • 17

1 Answers1

6

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

Narendra Prasath
  • 1,501
  • 1
  • 10
  • 20
  • Thank you @Narendra Prasath issue has been resolve as per you suggestion – Dzakirin Jun 10 '20 at 07:31
  • @DzakirinResearch, this issue has been solved in pydruid==0.6.1 version. Check official repo here https://github.com/druid-io/pydruid/issues/220#issuecomment-643107735 – Narendra Prasath Oct 15 '21 at 06:16