From 0c76223f79345a344ef7c540dabf5a1ca2380965 Mon Sep 17 00:00:00 2001 From: zhangbaowen Date: Tue, 4 Jun 2024 19:01:36 +0800 Subject: [PATCH] Update the location of python-dependencies.txt --- deploy/build/README.CentOS.bash | 2 +- deploy/build/README.Rhel-Rocky.bash | 2 +- deploy/build/README.macOS.bash | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/build/README.CentOS.bash b/deploy/build/README.CentOS.bash index 7fbb760ef57..ee9799d816e 100755 --- a/deploy/build/README.CentOS.bash +++ b/deploy/build/README.CentOS.bash @@ -31,7 +31,7 @@ sudo yum install -y \ postgresql-devel sudo pip3 install conan -sudo pip3 install -r python-dependencies.txt +sudo pip3 install -r ../../python-dependencies.txt sudo tee -a /etc/sysctl.conf << EOF kernel.shmmax = 5000000000000 diff --git a/deploy/build/README.Rhel-Rocky.bash b/deploy/build/README.Rhel-Rocky.bash index 8b7dc2cb832..8fdf57c781e 100755 --- a/deploy/build/README.Rhel-Rocky.bash +++ b/deploy/build/README.Rhel-Rocky.bash @@ -11,7 +11,7 @@ sudo yum --enablerepo=powertools install -y libyaml-devel sudo yum install -y postgresql sudo yum install -y postgresql-devel -pip3.9 install -r python-dependencies.txt +pip3.9 install -r ../../python-dependencies.txt #Remove the python3 softlink because on Rocky8 its pointing to python3.6 by default. We need python3.9 for gpdb7. sudo rm -rf /usr/bin/python3 diff --git a/deploy/build/README.macOS.bash b/deploy/build/README.macOS.bash index 36b09c89f07..4dff895df50 100755 --- a/deploy/build/README.macOS.bash +++ b/deploy/build/README.macOS.bash @@ -109,6 +109,6 @@ cat << EOF Please source greenplum_path.sh after compiling database, then -pip3 install --user -r python-dependencies.txt +pip3 install --user -r ../../python-dependencies.txt EOF