inception-project / inception-external-recommender

Get annotation suggestions for the INCEpTION text annotation platform from spaCy, Sentence BERT, scikit-learn and more. Runs as a web-service compatible with the external recommender API of INCEpTION.
Apache License 2.0
40 stars 17 forks source link

Error when trying to install contrib packages #17

Closed reckart closed 3 years ago

reckart commented 3 years ago

The readme says to use the following command to install with third-party libraries:

pip install -e .[contrib]

However, on OS X, this produces an error:

zsh: no matches found: .[contrib]

It works when I quote the last part of the command:

pip install -e ".[contrib]"