mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
10 lines
230 B
Bash
Executable File
10 lines
230 B
Bash
Executable File
#!/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
|
|
|