简介
源码:astral-sh/uv: An extremely fast Python package and project manager, written in Rust.
文档:docs.astral.sh/uv/
安装并设置缓存目录
环境变量新增UV_CACHE_DIR
:D:\Cache\uv\cache
# 使用 pipx 安装 uv
$ pipx install uv
# 查看缓存目录
$ uv cache dir
D:\Cache\uv\cache
创建项目并修改镜像源
# 在项目目录中初始化项目
$ example> uv init --name example
修改项目中pyproject.toml
:
[[tool.uv.index]]
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true
# 创建虚拟环境
$ uv venv
# 进入虚拟环境
$ .venv\Scripts\activate
评论区