— title: “uv” date: 2020-04-30T16:13:23+02:00 categories: - “Draft” tags: - “dummy_tag” isCKJLanguage: false mathjax: false comments: false draft: true How it manages version Pyton version, under ~/.local/bin:
uv python install 3.12.7 --preview # Adds `python3.12` to `~/.local/bin` Project structd tree. . ├── .python-version ├── README.md ├── main.py └── pyproject.toml ❯ cat .python-version 3.10 ❯ cat pyproject.toml [project] name = "hello-world" version = "0.1.0" description = "Add your description here" readme = "README.