no matches found: spacy[apple] #10014
-
How to reproduce the behaviourpip install -U spacy[apple] Your Environment
spaCy Version Used:
==> I'm getting the following error when I try to install the spacy[apple] python -m venv .env pip install -U spacy[apple] |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It should work to put quotes around the package+extras specification (so that your shell zsh doesn't try to interpret it further): pip install -U "spacy[apple]" Most shells like bash don't this with square brackets, so we haven't added quotes in the default commands. It might make sense to modify this for the |
Beta Was this translation helpful? Give feedback.
-
It may be a good idea to update the documentation on the page |
Beta Was this translation helpful? Give feedback.
It should work to put quotes around the package+extras specification (so that your shell zsh doesn't try to interpret it further):
pip install -U "spacy[apple]"
Most shells like bash don't this with square brackets, so we haven't added quotes in the default commands. It might make sense to modify this for the
[apple]
instructions, since it's the default for OS X.