From 99ebce9436bd3dca7394a7036b9b75a0dc705354 Mon Sep 17 00:00:00 2001 From: Evil0ctal Date: Sat, 27 Apr 2024 18:25:37 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B:=20Fix=20PyPI=20mirror?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bash/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bash/install.sh b/bash/install.sh index f88904c..1fbeceb 100644 --- a/bash/install.sh +++ b/bash/install.sh @@ -34,6 +34,9 @@ python3 -m venv venv echo 'Activating the virtual environment' source venv/bin/activate +echo 'Configuring pip to use a faster PyPI mirror' +pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ + echo 'Installing dependencies from requirements.txt' pip install -r requirements.txt