From ad9fe5d7a58d59fa6053526f3200a5d21e4c5837 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sat, 14 Sep 2019 11:00:44 +0200 Subject: [PATCH] DOC: fix the editable install command (#28445) --- doc/source/development/contributing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/development/contributing.rst b/doc/source/development/contributing.rst index c66ae5e4bc36f..3cdf9b83e96f3 100644 --- a/doc/source/development/contributing.rst +++ b/doc/source/development/contributing.rst @@ -208,7 +208,7 @@ We'll now kick off a three-step process: # Build and install pandas python setup.py build_ext --inplace -j 4 - python -m pip install -e --no-build-isolation . + python -m pip install -e . --no-build-isolation At this point you should be able to import pandas from your locally built version:: @@ -252,7 +252,7 @@ You'll need to have at least python3.5 installed on your system. # Build and install pandas python setup.py build_ext --inplace -j 4 - python -m pip install -e --no-build-isolation . + python -m pip install -e . --no-build-isolation Creating a branch -----------------