wgtmac commented on issue #36026:
URL: https://github.com/apache/arrow/issues/36026#issuecomment-2003101234
Yes, I found this on my Mac laptop. Below are the minimal configs required
to run pyarrow test. I will try to make it work on my Windows PC once back home.
```
mkdir arrow/cpp/build_conda
pushd arrow/cpp/build_conda
cmake -DCMAKE_INSTALL_PREFIX=$ARROW_HOME \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Debug \
-DARROW_BUILD_TESTS=OFF \
-DARROW_PARQUET=ON \
-DARROW_ORC=ON \
-DARROW_COMPUTE=ON \
-DARROW_CSV=ON \
-DARROW_DATASET=ON \
-DARROW_JSON=ON \
-DPython3_EXECUTABLE=/opt/miniconda3/bin/python3.12 \
..
make -j4
make install
popd
pushd arrow/python
export PYARROW_WITH_PARQUET=1
export PYARROW_WITH_ORC=1
export PYARROW_WITH_DATASET=1
export PYARROW_PARALLEL=4
python setup.py build_ext --inplace
popd
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]