mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-11 02:40:26 +03:00
8 lines
149 B
Bash
8 lines
149 B
Bash
|
#!/bin/sh
|
||
|
set -eu
|
||
|
|
||
|
# Install packages
|
||
|
pacman -Syy --noconfirm
|
||
|
pacman -Sy --noconfirm python3 python-pip
|
||
|
python3 -m pip install --upgrade pip --quiet
|