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/

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top