1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Installation
============
The recommended method to install Levenshtein is by using ``pip`` (the Python package manager)
using pip
---------
Levenshtein can be installed with ``pip``:
.. code-block:: sh
pip install levenshtein
There are pre-built binaries (wheels) of Levenshtein for MacOS (10.9 and later), Linux x86_64 and Windows.
from git
--------
Levenshtein can be directly used from GitHub by cloning the
repository which might be useful when you want to work on it:
.. code-block:: sh
git clone https://github.com/rapidfuzz/Levenshtein.git
cd Levenshtein
pip install .
|