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 2904891
Show file tree
Hide file tree
Showing 2 changed files with 3 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
6 changes: 2 additions & 4 deletions deploy/build/README.Ubuntu.bash
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,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 2904891

Please sign in to comment.