From c240cf36da015b441ff689dafed7420d3afabcc9 Mon Sep 17 00:00:00 2001 From: Deepak Majeti Date: Fri, 19 Apr 2024 09:55:08 -0700 Subject: [PATCH] Fix setup-centos8 script to use pip3.9 (#9536) Summary: Use pip3.9 to install packages since python39-pip is installed. Pull Request resolved: https://github.com/facebookincubator/velox/pull/9536 Reviewed By: Yuhta Differential Revision: D56332732 Pulled By: xiaoxmeng fbshipit-source-id: b78d034e81e6f3f8b8569a1e3cf5334f40de81c2 --- scripts/setup-centos8.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup-centos8.sh b/scripts/setup-centos8.sh index 7fac916d4c62..adaa4bd2e884 100755 --- a/scripts/setup-centos8.sh +++ b/scripts/setup-centos8.sh @@ -61,7 +61,7 @@ function install_velox_deps_from_dnf { libdwarf-devel curl-devel libicu-devel bison flex libsodium-devel # install sphinx for doc gen - pip3 install sphinx sphinx-tabs breathe sphinx_rtd_theme + pip3.9 install sphinx sphinx-tabs breathe sphinx_rtd_theme } function install_conda {