File: installation.rst

package info (click to toggle)
python-levenshtein 0.27.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 304 kB
  • sloc: cpp: 724; python: 291; makefile: 20; sh: 13
file content (27 lines) | stat: -rw-r--r-- 599 bytes parent folder | download
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 .