Skip to content

Commit 6f530a9

Browse files
ShaharNavehjreback
authored andcommitted
DOC: Added the flag "--no-use-pep517" to contrib guide. (#29387)
1 parent 0d977e9 commit 6f530a9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ or for installing in [development mode](https://pip.pypa.io/en/latest/reference/
190190

191191

192192
```sh
193-
python -m pip install --no-build-isolation -e .
193+
python -m pip install -e . --no-build-isolation --no-use-pep517
194194
```
195195

196196
If you have `make`, you can also use `make develop` to run the same command.

doc/source/development/contributing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ We'll now kick off a three-step process:
208208
209209
# Build and install pandas
210210
python setup.py build_ext --inplace -j 4
211-
python -m pip install -e . --no-build-isolation
211+
python -m pip install -e . --no-build-isolation --no-use-pep517
212212
213213
At this point you should be able to import pandas from your locally built version::
214214

@@ -255,7 +255,7 @@ You'll need to have at least python3.5 installed on your system.
255255
256256
# Build and install pandas
257257
python setup.py build_ext --inplace -j 0
258-
python -m pip install -e . --no-build-isolation
258+
python -m pip install -e . --no-build-isolation --no-use-pep517
259259
260260
**Windows**
261261

0 commit comments

Comments
 (0)