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]}
))}