mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
8 lines
229 B
Bash
Executable File
8 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
echo "----- install prerequisite packages -----"
|
|
yum install -y bash procps gcc libxml2-devel openssl-devel libcurl-devel python3-devel python3-pip nc
|
|
python3 -m pip install --upgrade pip --quiet
|
|
|