HungaBunga icon indicating copy to clipboard operation
HungaBunga copied to clipboard

Error in initial import

Open orenpapers opened this issue 6 years ago • 8 comments

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'

orenpapers avatar Aug 29 '19 08:08 orenpapers

@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)

JanaMi99 avatar Sep 02 '19 10:09 JanaMi99

PR #8 should resolve the issue :)

danpol avatar Sep 04 '19 20:09 danpol

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 () 4 from multiprocessing import cpu_count 5 from sklearn.base import BaseEstimator ----> 6 from regression import HungaBungaRegressor 7 from classification import HungaBungaClassifier 8 C:\Users......\site-packages\hunga_bunga\regression.py in () 20 21 ---> 22 from .core import * 23 from .params import * 24 SystemError: Parent module '' not loaded, cannot perform relative import

henaraihan avatar Sep 05 '19 08:09 henaraihan

I think you should remove pip version (pip uninstall hunga-bunga) and install the package again from source (python setup.py install).

danpol avatar Sep 05 '19 09:09 danpol

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!

alxgal avatar Sep 11 '19 09:09 alxgal

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 :)

danpol avatar Sep 11 '19 14:09 danpol

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.

AbdullahKeteldijk avatar Sep 18 '19 18:09 AbdullahKeteldijk

Tried all the options explained above but still facing the same error while importing.

from regression import HungaBungaRegressor

ModuleNotFoundError: No module named 'regression'

kennedykwangari avatar Nov 11 '19 14:11 kennedykwangari