LSH
LSH copied to clipboard
ModuleNotFoundError: No module named 'lsh.cMinhash'
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 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.
that seems to solve the problem but why is not working from the pip
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.
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
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