python #
creating a venv for a python version you dont have locally #
for when you cant fully use uv’s venvs. for python 3.13.
uv python pin python3.13
uv run python --version
# create the venv using uv's temp python version
uv run python -m venv .venv
source .venv-linux/bin/activate.fish
python --version
# > Python 3.13.11
pip install -r requirements.txt
misc #
links: