mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-08 02:35:43 +00:00
11 lines
378 B
Bash
Executable File
11 lines
378 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install Poetry from PyPI with an explicit version (no third-party installers).
|
|
# Set POETRY_VERSION to override the default.
|
|
set -euo pipefail
|
|
|
|
POETRY_VERSION="${POETRY_VERSION:-2.1.1}"
|
|
|
|
python -m pip install --disable-pip-version-check --upgrade pip
|
|
python -m pip install --disable-pip-version-check "poetry==${POETRY_VERSION}"
|
|
python -m poetry --version
|