From 96db2a17390a10dfed1ad3e024105fb3f1a30be8 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sat, 14 Sep 2019 10:23:45 +0200 Subject: [PATCH] DOC: fix the editable install command --- 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 -----------------