Skip to content
Snippets Groups Projects
Unverified Commit 9e91860a authored by quicksilver's avatar quicksilver Committed by GitHub
Browse files

Fix install dependencies scripts file bug (#5511)


Signed-off-by: default avatarquicksilver <zhifeng.zhang@zilliz.com>
parent e412cb14
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
if [[ ! -x "$(command -v apt)" ]]; then
if [[ -x "$(command -v apt)" ]]; then
sudo apt install -y g++ gcc make libssl-dev zlib1g-dev libboost-regex-dev \
libboost-program-options-dev libboost-system-dev libboost-filesystem-dev \
libboost-serialization-dev python3-dev libboost-python-dev libcurl4-openssl-dev gfortran libtbb-dev
elif [[ ! -x "$(command -v yum)" ]]; then
elif [[ -x "$(command -v yum)" ]]; then
sudo yum install -y epel-release centos-release-scl-rh \
&& sudo yum install -y make automake openssl-devel zlib-devel tbb-devel \
libcurl-devel python3-devel boost-devel boost-python \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment