mikej3737 opened a new issue #9162: URL: https://github.com/apache/arrow/issues/9162
I'm trying to build arrow from source with ORC on Ubuntu 18.04. Actually my ubuntu is a docker container and my dockerfile is as folows: The build was successful, but I get an error when I import pyarrow._orc. Is there something wrong with my build? Error: ``` ModuleNotFoundError: No module named 'pyarrow._orc' ```` Dockerfile: ```ENV PARQUET_TEST_DATA "/arrow/cpp/submodules/parquet-testing/data" ENV ARROW_TEST_DATA "/arrow/testing/data" RUN cd / && \ git clone https://github.com/apache/arrow.git && \ cd arrow && git submodule init && git submodule update && \ git checkout apache-arrow-1.0.1 && \ cd cpp && ./thirdparty/download_dependencies.sh /arrow-thirdparty RUN cd /arrow/cpp && mkdir build && cd build && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DARROW_GANDIVA=ON \ -DARROW_ORC=ON \ -DARROW_WITH_BZ2=ON \ -DARROW_WITH_ZLIB=ON \ -DARROW_WITH_ZSTD=ON \ -DARROW_WITH_LZ4=ON \ -DARROW_WITH_SNAPPY=ON \ -DARROW_WITH_BROTLI=ON \ -DARROW_PARQUET=ON \ -DARROW_PYTHON=ON \ -DARROW_BUILD_TESTS=ON \ -DARROW_CUDA=ON \ .. && \ make -j48 && \ make install ENV PYARROW_WITH_ORC 1 ENV PYARROW_WITH_PARQUET 1 ENV PYARROW_WITH_CUDA 1 RUN cd /arrow/python && \ python setup.py build_ext --inplace && python setup.py install ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org