Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the location of python-dependencies.txt #460

Merged
merged 1 commit into from
Jun 6, 2024
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
Loading