Skip to content

Commit

Permalink
ARROW-17771: [Docs][Python] Add the use of CONDA_DLL_SEARCH_MODIFICAT…
Browse files Browse the repository at this point in the history
…ION_ENABLE to the docs (apache#14302)

This PR adds info to the Python dev docs about the need to use `CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1` in Python versions < 3.10.

![Screenshot 2022-10-04 at 09 00 54](https://user-images.githubusercontent.com/16418547/193755270-d289d3b0-55a5-4c70-b2ab-0d6ca3a2ecbe.png)

Lead-authored-by: Alenka Frim <[email protected]>
Co-authored-by: Alenka Frim <[email protected]>
Signed-off-by: Joris Van den Bossche <[email protected]>
  • Loading branch information
AlenkaF authored Oct 6, 2022
1 parent 287ede7 commit d31f3d9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/source/developers/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,7 @@ Now, we can build pyarrow:
$ pushd arrow\python
$ set PYARROW_WITH_PARQUET=1
$ set CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1
$ python setup.py build_ext --inplace
$ popd
Expand All @@ -550,6 +551,11 @@ Now, we can build pyarrow:
For building pyarrow, the above defined environment variables need to also
be set. Remember this if to want to re-build ``pyarrow`` after your initial build.

.. note::

If you are using Conda with Python 3.9 or earlier, you must
set ``CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1``.

Then run the unit tests with:

.. code-block::
Expand Down

0 comments on commit d31f3d9

Please sign in to comment.