jonkeane commented on a change in pull request #11795: URL: https://github.com/apache/arrow/pull/11795#discussion_r759344175
########## File path: ci/docker/linux-apt-r.dockerfile ########## @@ -84,6 +84,10 @@ RUN cat /arrow/ci/etc/rprofile >> $(R RHOME)/etc/Rprofile.site # Also ensure parallel compilation of C/C++ code RUN echo "MAKEFLAGS=-j$(R -s -e 'cat(parallel::detectCores())')" >> $(R RHOME)/etc/Renviron.site +# Set up Python 3 and its dependencies +RUN ln -s /usr/bin/python3 /usr/local/bin/python && \ + ln -s /usr/bin/pip3 /usr/local/bin/pip + Review comment: Installing duckdb from source (at least from github) requires the use of Python, so we need to make sure that we have a `python` on the path before we do that step (for now). -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org