File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ or for installing in [development mode](https://pip.pypa.io/en/latest/reference/
190
190
191
191
192
192
``` sh
193
- python -m pip install -- no-build-isolation -e .
193
+ python -m pip install -e . -- no-build-isolation --no-use-pep517
194
194
```
195
195
196
196
If you have ` make ` , you can also use ` make develop ` to run the same command.
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ We'll now kick off a three-step process:
208
208
209
209
# Build and install pandas
210
210
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
212
212
213
213
At this point you should be able to import pandas from your locally built version::
214
214
@@ -255,7 +255,7 @@ You'll need to have at least python3.5 installed on your system.
255
255
256
256
# Build and install pandas
257
257
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
259
259
260
260
**Windows **
261
261
You can’t perform that action at this time.
0 commit comments