Skip to content Skip to sidebar Skip to footer

Unable To Install Python-levenshtein Package On Mac Using Python 3.6

I was trying to install the python-levenshtein library using terminal. However, I kept encountering errors. The Python version that I am using is Python 3.6 and the command I had b

Solution 1:

For Anaconda users, it is better use the following command as it helped in my case:

conda install -c conda-forge python-levenshtein

Solution 2:

Maybe your computer have both python2 and python3 installed, if that is the case, you should use pip3 install python-levenshtein.

Post a Comment for "Unable To Install Python-levenshtein Package On Mac Using Python 3.6"