From 59982d5ef8155fe8a3b1d58b016d669c05426f0b Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 6 Oct 2020 10:40:43 +0200 Subject: [PATCH] Add pip upgrade step to README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e5e5febe..5d310492d 100644 --- a/README.md +++ b/README.md @@ -104,9 +104,11 @@ For detailed installation instructions, see the ### pip Using pip, spaCy releases are available as source packages and binary wheels (as -of `v2.0.13`). +of `v2.0.13`). Before you install spaCy and its dependencies, make sure that +your `pip`, `setuptools` and `wheel` are up to date. ```bash +pip install -U pip setuptools wheel pip install spacy ```