I had done a pip freeze and one of the line in requirement file is a git repo as en-core-web-lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.2.5/en_core_web_lg-2.2.5.tar.gz
I have tried installing it with
pip3 install -e en-core-web-lg @ git+https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.2.5/en_core_web_lg-2.2.5.tar.gz
It resulted in an error as
line 97, in __init__
requirement_string[e.loc:e.loc + 8]))
pip._vendor.packaging.requirements.InvalidRequirement: Invalid requirement, parse error at "'@'"
pipsees the@as a package name and not as an identifier for a location. Have you tried without the spaces around@?