mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 08:19:22 +03:00
8 lines
197 B
Bash
Executable File
8 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
# Install packages
|
|
apt update
|
|
apt -y install curl sudo libcurl4-openssl-dev libxml2-utils libxml2-dev libssl-dev python3 python3-pip
|
|
python3 -m pip install --upgrade pip --quiet
|