mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
11 lines
246 B
Bash
Executable File
11 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
# Install packages
|
|
yum install -y python38 procps gcc libxml2-devel openssl-devel libcurl-devel nc
|
|
curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py
|
|
USER="$(whoami)"
|
|
export USER
|
|
python3 /tmp/get-pip.py
|
|
|