Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-17771: [Docs][Python] Add the use of CONDA_DLL_SEARCH_MODIFICATION_ENABLE to the docs #14302

Merged
merged 3 commits into from
Oct 6, 2022
Merged
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
6 changes: 6 additions & 0 deletions docs/source/developers/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,7 @@ Now, we can build pyarrow:

$ pushd arrow\python
$ set PYARROW_WITH_PARQUET=1
$ set CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
$ python setup.py build_ext --inplace
$ popd

Expand All @@ -566,6 +567,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