LSH icon indicating copy to clipboard operation
LSH copied to clipboard

ModuleNotFoundError: No module named 'lsh.cMinhash'

Open nithinivi opened this issue 5 years ago • 5 comments

I am using python 3.6.8, after installation when try to import using from lsh import minhash I get the following error trace

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/nithin/inflict/LSH/lsh/minhash.py", line 9, in <module>
    from .cMinhash import minhash_32, minhash_64
ModuleNotFoundError: No module named 'lsh.cMinhash'

nithinivi avatar Mar 18 '19 15:03 nithinivi

did your installation run successfully?

git clone https://github.com/mattilyra/LSH cd LSH python setup.py install

took me a few tries to build this and not have it error on building lsh.cMinhash.

EggsBenedict avatar Mar 22 '19 16:03 EggsBenedict

that seems to solve the problem but why is not working from the pip

nithinivi avatar Apr 03 '19 09:04 nithinivi

I'm receiving the same ModuleNotFoundError: No module named 'lsh.cMinhash', but I have no error during the installation process. So, I'm not sure why it is not working correctly.

hgatewood avatar Nov 09 '19 20:11 hgatewood

I am using python 3.6.8, after installation when try to import using from lsh import minhash I get the following error trace

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/nithin/inflict/LSH/lsh/minhash.py", line 9, in <module>
    from .cMinhash import minhash_32, minhash_64
ModuleNotFoundError: No module named 'lsh.cMinhash'

did you solve it

zhangxiaohuM avatar Dec 29 '20 07:12 zhangxiaohuM

I am using python 3.6.8, after installation when try to import using from lsh import minhash I get the following error trace

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/nithin/inflict/LSH/lsh/minhash.py", line 9, in <module>
    from .cMinhash import minhash_32, minhash_64
ModuleNotFoundError: No module named 'lsh.cMinhash'

did you solve it

Nope I just managed it with what @EggsBenedict has suggested

nithinivi avatar Jan 06 '21 15:01 nithinivi