diff --git a/README.md b/README.md
index 9bdb83bae..6a35e19c5 100644
--- a/README.md
+++ b/README.md
@@ -253,20 +253,14 @@ source .env/bin/activate
# make sure you are using the latest pip
python -m pip install -U pip setuptools wheel
-pip install .
+pip install -r requirements.txt
+pip install --no-build-isolation --editable .
```
To install with extras:
```bash
-pip install .[lookups,cuda102]
-```
-
-To install all dependencies required for development, use the [`requirements.txt`](requirements.txt). Compared to regular install via pip, it
-additionally installs developer dependencies such as Cython.
-
-```bash
-pip install -r requirements.txt
+pip install --no-build-isolation --editable .[lookups,cuda102]
```
## 🚦 Run tests
diff --git a/website/docs/usage/index.md b/website/docs/usage/index.md
index 4e29fd959..cbbda2e4f 100644
--- a/website/docs/usage/index.md
+++ b/website/docs/usage/index.md
@@ -170,26 +170,17 @@ $ git clone https://github.com/explosion/spaCy # clone spaCy
$ cd spaCy # navigate into dir
$ python -m venv .env # create environment in .env
$ source .env/bin/activate # activate virtual env
-$ pip install . # compile and install spaCy
+$ pip install -r requirements.txt # install requirements
+$ pip install --no-build-isolation --editable . # compile and install spaCy
```
To install with extras:
```bash
-$ pip install .[lookups,cuda102] # install spaCy with extras
+$ pip install --no-build-isolation --editable .[lookups,cuda102]
```
-To install all dependencies required for development:
-
-```bash
-$ pip install -r requirements.txt
-```
-
-Compared to a regular install via pip, the
-[`requirements.txt`](%%GITHUB_SPACY/requirements.txt) additionally includes
-developer dependencies such as Cython and the libraries required to run the test
-suite. See the [quickstart widget](#quickstart) to get the right commands for
-your platform and Python version.
+How to install compilers and related build tools:
@@ -227,7 +218,7 @@ source code and recompiling frequently.
```bash
$ pip install -r requirements.txt
$ python setup.py build_ext --inplace -j N
- $ pip install --no-build-isolation --editable .
+ $ python setup.py develop
```
### Building an executable {#executable}