mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 20:12:09 +03:00
6 lines
203 B
Bash
Executable File
6 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
sudo apt update
|
|
# Install libcurl dev so that hurl can be built dynamically with libcurl
|
|
sudo apt install libcurl4-openssl-dev libxml2-utils
|
|
python3 -m pip install --upgrade pip --quiet |