I have Anaconda3 on my windows system. Sklearn is installed both in Lib in Anaconda's location and 'envs'->'[My envs name]'->'Lib'->'site-package'. I followed up the instruction on https://github.com/EvgeniDubov/hellinger-distance-criterion. So, first I cloned 'hellinger-distance-criterion' somewhere in my system. Second, I got _criterion.pxd and copied and replaced it with my original _criterion.pxd in both main and virtual environments. Then I opened the 'hellinger-distance-criterion' folder in anaconda's console and installed the module using python setup.py build_ext --inplace. Everything looked normal and no error was shown. But when I open the spyder or Pycharm and run
from hellinger_distance_criterion import HellingerDistanceCriterion
it shows 'ModuleNotFoundError: No module named 'hellinger_distance_criterion'.
Would you please let me know what might be the problem exactly and how to solve it?
Hello,
I have Anaconda3 on my windows system. Sklearn is installed both in Lib in Anaconda's location and 'envs'->'[My envs name]'->'Lib'->'site-package'. I followed up the instruction on https://github.com/EvgeniDubov/hellinger-distance-criterion. So, first I cloned 'hellinger-distance-criterion' somewhere in my system. Second, I got _criterion.pxd and copied and replaced it with my original _criterion.pxd in both main and virtual environments. Then I opened the 'hellinger-distance-criterion' folder in anaconda's console and installed the module using python setup.py build_ext --inplace. Everything looked normal and no error was shown. But when I open the spyder or Pycharm and run from hellinger_distance_criterion import HellingerDistanceCriterion it shows 'ModuleNotFoundError: No module named 'hellinger_distance_criterion'. Would you please let me know what might be the problem exactly and how to solve it?
Thank you