[
https://issues.apache.org/jira/browse/ARROW-14504?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17463948#comment-17463948
]
Antoine Pitrou commented on ARROW-14504:
----------------------------------------
Other than that, here is a fix for the GCS installation script itself:
{code}
diff --git a/ci/scripts/install_gcs_testbench.sh
b/ci/scripts/install_gcs_testbench.sh
index 16e3c4042..ed5e1af2e 100755
--- a/ci/scripts/install_gcs_testbench.sh
+++ b/ci/scripts/install_gcs_testbench.sh
@@ -34,4 +34,5 @@ if [[ "${version}" -eq "default" ]]; then
version="v0.7.0"
fi
-pip install
"https://github.com/googleapis/storage-testbench/archive/${version}.tar.gz"
+python3 -m pip install setuptools wheel
+python3 -m pip install
"https://github.com/googleapis/storage-testbench/archive/${version}.tar.gz"
{code}
> [C++][CI] Fix GCS testbench for Debian 10
> -----------------------------------------
>
> Key: ARROW-14504
> URL: https://issues.apache.org/jira/browse/ARROW-14504
> Project: Apache Arrow
> Issue Type: Bug
> Components: C++, Continuous Integration
> Reporter: Balazs Jeszenszky
> Priority: Major
>
> cc [~coryan]
> The GCS testbench is broken on Debian 10. ARROW-14491 removes it temporarily,
> but it should be fixed and added back. Initially it complained about pip
> availability, which could be solved by installing python3-setuptools and
> symlinking pip to pip3 in debian-10-cpp.dockerfile, however the run itself
> still fails.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)