Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
210310676
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
210310676
Commits
9e91860a
Unverified
Commit
9e91860a
authored
3 years ago
by
quicksilver
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix install dependencies scripts file bug (#5511)
Signed-off-by:
quicksilver
<
zhifeng.zhang@zilliz.com
>
parent
e412cb14
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/install_deps.sh
+2
-2
2 additions, 2 deletions
scripts/install_deps.sh
with
2 additions
and
2 deletions
scripts/install_deps.sh
+
2
−
2
View file @
9e91860a
#!/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
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment