Skip to content

Commit e3e9cd3

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 6e93f27 commit e3e9cd3

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ sudo apt-get install -y \
2020
libkrb5-dev \
2121
libpam-dev \
2222
libperl-dev \
23+
libpq-dev \
2324
libreadline-dev \
2425
libssl-dev \
2526
libxerces-c-dev \
@@ -35,12 +36,10 @@ sudo apt-get install -y \
3536
pkg-config \
3637
python3-dev \
3738
python3-pip \
38-
python3-psutil \
39-
python3-pygresql \
40-
python3-yaml \
4139
zlib1g-dev
4240

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

4544
sudo tee -a /etc/sysctl.conf << EOF
4645
kernel.shmmax = 5000000000000

0 commit comments

Comments
 (0)