fix: add uv install path in speedrun script

This commit is contained in:
DeoJin 2026-03-19 00:06:00 +01:00
parent 5019accc5b
commit 4cfc984df9

View File

@ -20,6 +20,8 @@ mkdir -p $NANOCHAT_BASE_DIR
# install uv (if not already installed)
command -v uv &> /dev/null || curl -LsSf https://astral.sh/uv/install.sh | sh
# add uv to PATH for shells that don't auto-pick up ~/.local/bin after install
export PATH="$HOME/.local/bin:$PATH"
# create a .venv local virtual environment (if it doesn't exist)
[ -d ".venv" ] || uv venv
# install the repo dependencies