mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 16:11:34 +03:00
10 lines
230 B
Bash
10 lines
230 B
Bash
|
#!/bin/bash
|
||
|
# shellcheck source=/dev/null
|
||
|
set -Eeuo pipefail
|
||
|
|
||
|
echo "----- install python3 venv -----"
|
||
|
python3 -m venv /tmp/hurl-python3-venv
|
||
|
source /tmp/hurl-python3-venv/bin/activate
|
||
|
python3 -m pip install --upgrade pip --quiet
|
||
|
|