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

Fix Ubuntu Script Malfunction Issues #664

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 @@ -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 \
Baowen648 marked this conversation as resolved.
Show resolved Hide resolved
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
Loading