From 8ba1bd525e6a1b8569c20e8f9c05bf1de121083e Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 24 May 2026 19:58:06 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20README.md=20to=20switch?= =?UTF-8?q?=20pip=20mirror=20to=20HTTPS=20and=20add=20uv=20configuration?= =?UTF-8?q?=20example?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c2d67f7..774c267 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,19 @@ uv run 'https://script.hatter.ink/@0/show_myip.py' `~/.pip/pip.conf` ```ini [global] -index-url = http://mirrors.aliyun.com/pypi/simple/ +index-url = https://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com ``` +`~/.config/uv/uv.toml` +```toml +[[index]] +url = "https://mirrors.aliyun.com/pypi/simple/" +default = true +``` + ```shell pip install requests pip install cryptography