Pregunta

How should I go about using a python library that can be downloaded (eg. in the link below)? Haven't used any specific direct written libraries in python before.

http://code.google.com/p/pylevenshtein/

¿Fue útil?

Solución

Preferable way to install new libraries in python is to use pip installer. Install it with the instructions provided in the previous link, and after that you can install new packages by simply typing in console:

pip install <package_name>    

The package you need to install has the name of python-Levenshtein.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top