Skip to content

Commit

Permalink
Fix Ubuntu Script Malfunction Issues
Browse files Browse the repository at this point in the history
Modify the script-related content to ensure that pip3 installs
consistent software versions across different platforms.
  • Loading branch information
Baowen648 committed Oct 17, 2024
1 parent fdc5abc commit 1e564be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy/build/README.CentOS.bash
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sudo yum install -y \
postgresql \
postgresql-devel

sudo pip3 install conan
sudo pip3 install conan==1.50.0
sudo pip3 install -r ../../python-dependencies.txt

sudo tee -a /etc/sysctl.conf << EOF
Expand Down
7 changes: 3 additions & 4 deletions deploy/build/README.Ubuntu.bash
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ sudo apt-get install -y \
libkrb5-dev \
libpam-dev \
libperl-dev \
libpq-dev \
libreadline-dev \
libssl-dev \
libxerces-c-dev \
Expand All @@ -35,12 +36,10 @@ sudo apt-get install -y \
pkg-config \
python3-dev \
python3-pip \
python3-psutil \
python3-pygresql \
python3-yaml \
zlib1g-dev

pip3 install conan
sudo pip3 install conan==1.50.0
sudo pip3 install -r ../../python-dependencies.txt

sudo tee -a /etc/sysctl.conf << EOF
kernel.shmmax = 5000000000000
Expand Down

0 comments on commit 1e564be

Please sign in to comment.