Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/developers/guide/step_by_step/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Building other Arrow libraries

.. code:: console

$ pip install --no-build-isolation --editable -vv .
$ pip install --no-build-isolation --editable . -vv

**Recompiling C++**

Expand Down
6 changes: 3 additions & 3 deletions docs/source/developers/python/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ To build PyArrow run:
.. code-block::

$ pushd arrow/python
$ pip install --no-build-isolation --editable -vv .
$ pip install --no-build-isolation --editable . -vv
$ popd

.. tab-item:: Windows
Expand All @@ -400,7 +400,7 @@ To build PyArrow run:
.. code-block::

$ pushd arrow\python
$ pip install --no-build-isolation --editable -vv .
$ pip install --no-build-isolation --editable . -vv
$ popd

.. note::
Expand Down Expand Up @@ -429,7 +429,7 @@ To build PyArrow run:
.. code-block::

$ set PYARROW_BUNDLE_ARROW_CPP=ON
$ pip install --no-build-isolation --editable -vv .
$ pip install --no-build-isolation --editable . -vv

Note that bundled Arrow C++ libraries will not be automatically
updated when rebuilding Arrow C++.
Expand Down
Loading