Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/build/README.CentOS.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deploy/build/README.Rhel-Rocky.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deploy/build/README.macOS.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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