I am doing the following:
root@ABZ-173:/home/abz# pip3 install en_core_web_md
Collecting en_core_web_md
Could not find a version that satisfies the requirement en_core_web_md (from versions: )
No matching distribution found for en_core_web_md
You are using pip version 8.1.1, however version 10.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
This used to work previously.
I do not want to link spacy
to the model, python -m spacy download en
.
Instead, I want to download it independently.
Also tried by various other means (by specifying version en_core_web_md==2.0.0, etc.). Unable to download.
setup.py
. If spaCy is not installed yet, or if the version doesn't match, pip will install and/or update it, just like it would for any other dependency. Setting the--no-deps
flag will turn this off (but also means that the user is responsible for making sure that the versions are compatible). – Ignominious