mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 00:44:55 +03:00
9 lines
221 B
Bash
Executable File
9 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
echo "----- install prerequisite packages -----"
|
|
pacman -Syy --noconfirm
|
|
pacman -Sy --noconfirm curl icu base-devel libxml2 python3 glibc
|
|
|
|
curl -O https://bootstrap.pypa.io/get-pip.py
|
|
python3 get-pip.py
|