From 72b24effc7c34bb3535567f43c5b17d01da1f6e3 Mon Sep 17 00:00:00 2001 From: Evil0ctal Date: Sat, 27 Apr 2024 18:48:12 -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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/install.sh b/bash/install.sh index 1fbeceb..08120a6 100644 --- a/bash/install.sh +++ b/bash/install.sh @@ -34,8 +34,8 @@ 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 'Setting pip to use the default PyPI index' +pip config set global.index-url https://pypi.org/simple/ echo 'Installing dependencies from requirements.txt' pip install -r requirements.txt