pip install with extra requirements
arademaker opened this issue · 1 comments
arademaker commented
% pip --version
pip 22.1.2 from /Users/ar/work/wn/glosstag-kg/venv/lib/python3.9/site-packages/pip (python 3.9)
(venv) ar@tenis glosstag-kg % pip install pydelphin [repp]
zsh: no matches found: [repp]
(venv) ar@tenis glosstag-kg % pip install pydelphin[repp]
zsh: no matches found: pydelphin[repp]
``
Maybe something changed in the new version of pip? How to specify the extra `[repp]`?
goodmami commented
Try putting quotes around it or escaping the first [
bracket. Zsh uses [...]
for regex-style character classes.
$ pip install 'pydelphin[repp]'
See here for some more info: https://stackoverflow.com/a/30539963