I am stuck with Levenshtein. It keeps saying "No module named 'Levenshtein'. I have installed Levenshtein. What should I do?

2.5k views Asked by At
File "/Users/karanpraharaj/Desktop/IIIT Hyderabad - Spring 2019/Project - CV Jawahar/RMS-master/RMS/Each_Paper_Analytics/views.py", line 7, in <module>
    import Levenshtein
ModuleNotFoundError: No module named 'Levenshtein'
1

There are 1 answers

0
Lucas Hort On

Check if you have really installed it:

pip list

or

conda list

Also, see the comment below for more info about how to install this module: https://stackoverflow.com/a/29494360/10089328