mirror of
https://github.com/johndoe6345789/WizardMerge.git
synced 2026-04-25 06:04:55 +00:00
9 lines
226 B
Bash
Executable File
9 lines
226 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Install Python dependencies system-wide or in the active environment.
|
|
set -eu
|
|
|
|
PYTHON_BIN=${PYTHON_BIN:-python3}
|
|
|
|
"$PYTHON_BIN" -m pip install --upgrade pip
|
|
"$PYTHON_BIN" -m pip install -r requirements.txt
|