Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ This package is a [spaCy 2.0 extension](https://spacy.io/usage/processing-pipeli

`pip install spacy_cld`

### Windows Prerequisite

This package uses the `pycld2` Python extension. On Windows, you must manually install this extension before installing `spacy_cld`. Precompiled binaries are available [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#pycld2). Download the correct version for your Python version and install the package using `pip`.

i.e. for Python 3.7 on a 64-bit machine, run the following from the same directory as the downloaded file (Note: the filename may differ for the latest version):

`pip install pycld2-0.31-cp37-cp37m-win_amd64.whl`

## Usage

Adding the spaCy-CLD component to the processing pipeline is relatively simple:
Expand Down