mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-05-14 13:15:04 +00:00
11 lines
339 B
Bash
Executable File
11 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install UV (Python package manager) from PyPI with an explicit version.
|
|
# Set UV_VERSION to override the default.
|
|
set -euo pipefail
|
|
|
|
UV_VERSION="${UV_VERSION:-0.11.12}"
|
|
|
|
python -m pip install --disable-pip-version-check --upgrade pip
|
|
python -m pip install --disable-pip-version-check "uv==${UV_VERSION}"
|
|
uv --version
|