Skip to content

Commit

Permalink
support: added install_deps_ubuntu.sh
Browse files Browse the repository at this point in the history
convenient way to bootstrap quickly
  • Loading branch information
tridge committed Apr 8, 2024
1 parent 85c906f commit 28db38e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ like.
> sudo apt install -y liblz4-dev
> sudo apt install -y libssl-dev
Or run support/install_deps_ubuntu.sh

- For CentOS (use EPEL for python3-pip):

> sudo yum -y install epel-release
Expand Down
11 changes: 11 additions & 0 deletions support/install_deps_ubuntu.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

# install script for build dependencies for ubuntu/debian systems

sudo apt install -y gcc g++ gawk autoconf automake python3-cmarkgfm
sudo apt install -y acl libacl1-dev
sudo apt install -y attr libattr1-dev
sudo apt install -y libxxhash-dev
sudo apt install -y libzstd-dev
sudo apt install -y liblz4-dev
sudo apt install -y libssl-dev

0 comments on commit 28db38e

Please sign in to comment.