Skip to content

Commit 2904891

Browse files
committed
Fix Ubuntu Script Malfunction Issues
Modify the script-related content to ensure that pip3 installs consistent software versions across different platforms.
1 parent fdc5abc commit 2904891

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

deploy/build/README.CentOS.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ sudo yum install -y \
3030
postgresql \
3131
postgresql-devel
3232

33-
sudo pip3 install conan
33+
sudo pip3 install conan==1.50.0
3434
sudo pip3 install -r ../../python-dependencies.txt
3535

3636
sudo tee -a /etc/sysctl.conf << EOF

deploy/build/README.Ubuntu.bash

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,10 @@ sudo apt-get install -y \
3535
pkg-config \
3636
python3-dev \
3737
python3-pip \
38-
python3-psutil \
39-
python3-pygresql \
40-
python3-yaml \
4138
zlib1g-dev
4239

43-
pip3 install conan
40+
sudo pip3 install conan==1.50.0
41+
sudo pip3 install -r ../../python-dependencies.txt
4442

4543
sudo tee -a /etc/sysctl.conf << EOF
4644
kernel.shmmax = 5000000000000

0 commit comments

Comments
 (0)