Skip to content

Commit 237a56a

Browse files
Merge pull request #92 from Distributive-Network/docs/clean-setup
build(setup.sh): add missing pkgs on fresh ubuntu systems
2 parents bd576e7 + c6efa76 commit 237a56a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null || getconf NPROCESSORS_ONLN 2>/dev/
99
echo "Installing dependencies"
1010
if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Linux
1111
sudo apt-get update --yes
12-
sudo apt-get install cmake doxygen graphviz llvm g++ pkg-config m4 wget --yes
12+
sudo apt-get install --yes cmake doxygen graphviz llvm g++ pkg-config m4 \
13+
wget curl python3-distutils python3-dev
1314
elif [[ "$OSTYPE" == "darwin"* ]]; then # macOS
1415
brew update || true # allow failure
1516
brew install cmake doxygen graphviz pkg-config wget coreutils # `coreutils` installs the `realpath` command

0 commit comments

Comments
 (0)