当前位置: 首页 > article >正文

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

 


http://www.kler.cn/a/393123.html

相关文章:

  • python 同时控制多部手机
  • 关于GCC内联汇编(也可以叫内嵌汇编)的简单学习
  • 微服务(二)
  • 半导体企业如何利用 Jira 应对复杂商业变局?
  • C++单例模式实现
  • jmeter常用配置元件介绍总结之定时器
  • 在双显示器环境中利用Sunshine与Moonlight实现游戏串流的同时与电脑其他任务互不干扰
  • k8s拓扑域 :topologyKey
  • 快递物流查询API接口如何用C#调用
  • Docker 安装Immich教程
  • 【Linux】内核模版加载modprobe | lsmod
  • 【Java Web】分页查询
  • 材质(二)——材质参数化,从源材质继承生成不同的材质实例
  • Lodash的常用方法整理
  • 上头:5个电脑必装的神级软件,一个比一个好用
  • lambdaQueryWrapper详细解释
  • 【菜笔cf刷题日常-1400】C. RationalLee(贪心)
  • 蓝桥杯每日真题 - 第11天
  • 轻松上手:使用Docker部署Java服务
  • openGauss常见问题与故障处理(四)
  • 量化交易系统开发-实时行情自动化交易-3.4.1.6.A股宏观经济数据
  • 边缘计算在工业互联网中的应用
  • SystemVerilog学习笔记(九):Schedule
  • Vue 生命周期函数
  • 可认证数据资产合约标准协议(CMIDA-1)意见征集
  • 06.VSCODE:备战大项目,CMake专项配置