質問

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