From f3aa9d1ae15682e0971222e70a9eed9f63f71325 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Tue, 19 Oct 2021 14:24:34 -0700 Subject: [PATCH] Use `pip install .` instead of calling `setup.py` (#5442) It is almost the same but is more consistent and future proof --- docs/source/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index 695cd3e777..e6d5cd26dd 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -28,7 +28,7 @@ To install distributed from source, clone the repository from `github git clone https://github.com/dask/distributed.git cd distributed - python setup.py install + python -m pip install . Notes