From 656e0ae42cfc5298324ca94e38bd2d5e0e05faf4 Mon Sep 17 00:00:00 2001 From: bushuhui Date: Sun, 10 Oct 2021 17:03:24 +0800 Subject: [PATCH] Change pip mirror --- references_tips/InstallPython.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/references_tips/InstallPython.md b/references_tips/InstallPython.md index a3d6bff..1c2a319 100644 --- a/references_tips/InstallPython.md +++ b/references_tips/InstallPython.md @@ -42,16 +42,16 @@ bash ./Anaconda3-2020.11-Linux-x86_64.sh 参考这里的[conda安装和软件源设置说明](https://mirrors.bfsu.edu.cn/help/anaconda/) ``` +conda config --set show_channel_urls yes conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/pkgs/main/ conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/pkgs/free/ -conda config --set show_channel_urls yes ``` ### 3.2 设置PIP源 ``` -pip config set global.index-url 'https://mirrors.ustc.edu.cn/pypi/web/simple' +pip config set global.index-url 'https://mirrors.aliyun.com/pypi/simple/' ```