conda和pip的镜像源配置和删除
目录
一、pip 镜像源管理
二、conda 镜像源管理
三、常用的镜像源地址
四、临时使用其他源
一、pip 镜像源管理
# 查看当前配置
pip config list
# 设置镜像源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 删除镜像源设置
pip config unset global.index-url
# 恢复官方源
pip config set global.index-url https://pypi.org/simple
二、conda 镜像源管理
# 查看当前配置的源
conda config --show channels
# 添加镜像源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
# 删除指定镜像源
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 删除所有自定义源(恢复默认)
conda config --remove-key channels
# 禁用显示源URL
conda config --set show_channel_urls false
三、常用的镜像源地址
# PyPI 官方源
https://pypi.org/simple
# 清华源
pip: https://pypi.tuna.tsinghua.edu.cn/simple
conda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 阿里源
pip: https://mirrors.aliyun.com/pypi/simple
conda: https://mirrors.aliyun.com/anaconda/pkgs/main/
# 中科大源
pip: https://pypi.mirrors.ustc.edu.cn/simple
conda: https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
四、临时使用其他源
# pip临时使用
pip install package_name -i https://pypi.tuna.tsinghua.edu.cn/simple
# conda临时使用
conda install package_name -c channel_name