httpx/scripts/install
2025-09-16 18:59:11 +01:00

14 lines
181 B
Bash
Executable File

#!/bin/sh
set -x
if [ -z "$GITHUB_ACTIONS" ]; then
python3 -m venv venv
PIP="venv/bin/pip"
else
PIP="pip"
fi
"$PIP" install -U pip
"$PIP" install -r requirements.txt