hurl/bin/install_prerequisites_ubuntu.sh

9 lines
231 B
Bash
Raw Normal View History

2022-12-14 11:28:25 +03:00
#!/bin/bash
set -Eeuo pipefail
2022-07-30 05:49:56 +03:00
sudo apt update
# Install libcurl dev so that hurl can be built dynamically with libcurl
2022-12-16 12:51:33 +03:00
sudo apt install bash libcurl4-openssl-dev libxml2-utils netcat
2022-12-14 11:28:25 +03:00
python3 -m pip install --upgrade pip --quiet