From 57f4c088be1e5f2a2d819054b2579ce463d08fcd Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 15 Sep 2019 17:56:54 +0200 Subject: [PATCH] Use full model name in quickstart install [ci skip] --- website/src/widgets/quickstart-install.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/widgets/quickstart-install.js b/website/src/widgets/quickstart-install.js index 81e28871b..d267766f6 100644 --- a/website/src/widgets/quickstart-install.js +++ b/website/src/widgets/quickstart-install.js @@ -88,9 +88,9 @@ const QuickstartInstall = ({ id, title }) => ( pip install -r requirements.txt python setup.py build_ext --inplace - {models.map(({ code }) => ( + {models.map(({ code, models: modelOptions }) => ( - python -m spacy download {code} + python -m spacy download {modelOptions[0]} ))}