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 -----------------