【Python】Anaconda以及Pip配置清华镜像源
为了配置Anaconda及Pip使用清华大学的镜像源,你需要编辑他们各自的配置文件。
对于Anaconda,你可以通过以下步骤设置镜像源:
- 打开Anaconda Prompt。
- 输入以下命令来配置conda的镜像源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --set show_channel_urls yes
对于Pip,你可以通过以下步骤设置镜像源:
- 打开命令行工具。
- 输入以下命令来配置pip的镜像源:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
以上步骤将会设置Anaconda及Pip使用清华大学的镜像源,这将会加快包的下载速度。
评论已关闭