@@ -254,35 +254,37 @@ You'll need to have at least python3.5 installed on your system.
254
254
python -m pip install -r requirements-dev.txt
255
255
256
256
# Build and install pandas
257
- python setup.py build_ext --inplace -j 4
257
+ python setup.py build_ext --inplace -j 0
258
258
python -m pip install -e . --no-build-isolation
259
259
260
260
**Windows **
261
261
262
262
Below is a brief overview on how to set-up a virtual environment with Powershell
263
- under Windows. For details please refer to the
263
+ under Windows. For details please refer to the
264
264
`official virtualenv user guide <https://virtualenv.pypa.io/en/stable/userguide/#activate-script >`__
265
265
266
266
.. code-block :: powershell
267
267
268
268
# Create a virtual environment
269
269
# Use an ENV_DIR of your choice. We'll use ~\virtualenvs\pandas-dev where
270
- # '~' is the folder pointed to by either $env:USERPROFILE (Powershell) or
270
+ # '~' is the folder pointed to by either $env:USERPROFILE (Powershell) or
271
271
# %USERPROFILE% (cmd.exe) environment variable
272
272
# Any parent directories should already exist
273
273
274
- # If you are using cmd.exe, run instead: python -m venv $env:USERPROFILE\virtualenvs\pandas-dev
275
- python - m venv $env: USERPROFILE \virtualenvs\pandas- dev
274
+ # If you are using cmd.exe, run instead:
275
+ # python -m venv %USERPROFILE%\virtualenvs\pandas-dev
276
+ python - m venv $env: USERPROFILE \virtualenvs\pandas- dev
276
277
277
278
# Activate the virtualenv
278
- # If you are using cmd.exe, run instead: %USERPROFILE%\virtualenvs\pandas-dev\Scripts\activate.bat
279
- ~\virtualenvs\pandas- dev\Scripts\Activate.ps1
279
+ # If you are using cmd.exe, run instead:
280
+ # %USERPROFILE%\virtualenvs\pandas-dev\Scripts\activate.bat
281
+ ~\virtualenvs\pandas- dev\Scripts\Activate.ps1
280
282
281
283
# Install the build dependencies
282
284
python - m pip install - r requirements- dev.txt
283
285
284
286
# Build and install pandas
285
- python setup.py build_ext -- inplace - j 4
287
+ python setup.py build_ext -- inplace - j 0
286
288
python - m pip install - e . -- no- build-isolation -- no- use-pep517
287
289
288
290
Creating a branch
0 commit comments