Error in initial import
Hi, I downloaded and put the package in site-packages. When importing, I get the error:
from regression import HungaBungaRegressor
ModuleNotFoundError: No module named 'regression'
@oren1k Hi, I had the same issue. Just replace from regression import HungaBungaRegressor with from .regression import HungaBungaRegressor in __init__.py. Do the same for all local file imports (classification in __init__.py, core and params in classification.py and regression.py)
PR #8 should resolve the issue :)
I was getting the same error. Using the above solution, it worked fine but now I am getting another error:
5
C:\Users.....\lib\site-packages\hunga_bunga_init_.py in
I think you should remove pip version (pip uninstall hunga-bunga) and install the package again from source (python setup.py install).
Hi, I pulled PR#8 and manually installed hunga_bunga via python setup.py install as described. However, I still get the ModuleNotFoundError: No module named 'hunga_bunga' I tried to pip install hunga-bunga again and got the message that the requirements are already satisfied for hunga-bunga. I now have the file "hunga_bunga-0.1-py3.7.egg" in my python site-packages directory. Any ideas on how to solve this? Thanks in advance!
Ok, I played with this repo a bit—it contains an enormous amount of bugs. I'll close PR#8 not to give hope that it solves all problems :)
You should change the line to:
from hunga_bunga.regression import HungaBungaRegressor
You should repeat that multiple times for all occurrences of that error and you should probably also pip install tabulate.
Tried all the options explained above but still facing the same error while importing.
from regression import HungaBungaRegressor
ModuleNotFoundError: No module named 'regression'