镜像地址是什么_docker国内镜像源

镜像地址是什么_docker国内镜像源国内常用镜像源地址【用于记录】_清华源镜像地址

镜像地址是什么_docker国内镜像源"

国内常用镜像源地址【附配置方式pip and conda】

Pip通用:

  • 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
  • 阿里云:http://mirrors.aliyun.com/pypi/simple/
  • 中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/
  • 华中科技大学:http://pypi.hustunique.com/
  • 山东理工大学:http://pypi.sdutlinux.org/
  • 豆瓣:http://pypi.douban.com/simple/

Conda通用:

  1. 清华大学镜像:

    https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
    
  2. 中科大镜像:

    https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
    https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
    https://mirrors.ustc.edu.cn/anaconda/cloud/
    https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
    
  3. 阿里云镜像:

    https://mirrors.aliyun.com/anaconda/pkgs/main/
    https://mirrors.aliyun.com/anaconda/pkgs/free/
    https://mirrors.aliyun.com/anaconda/cloud/
    https://mirrors.aliyun.com/anaconda/cloud/conda-forge/
    

使用方法:

PIP:

临时使用:

​ 1.单个包:pip install xxx -i <index_url>

​ 2.安装包文件列表: pip install -r requirements.txt -i <index_url>

​ 备注:<index_url>是你想要使用的镜像源的URL,第二个命令是指定镜像源下载requirements.txt中的所有插件。

永久更改pip的源:

​ 可以执行以下步骤:首先升级pip到最新的版本,然后进行配置。具体操作如下:

​ 1.升级pip:pip install pip -U

​ 2.输入:pip config list,查看现有镜像源

​ 3.设置pip源:pip config set global.index-url <index_url>

Conda:

临时使用:

​ 1.单个包:conda install –channel <index_url> xxx

​ 例子:conda install –channel https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ pandas

​ 2.安装包文件列表【requirements.txt】:conda不支持

永久更改conda的源:

​ 可以按照以下步骤进行操作:

​ 1.输入conda config –show,查看当前conda的配置信息【channels项为镜像源】

​ 2.输入conda config –add channels <index_url>

​ 例子conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

​ 3.输入conda config –update,更新配置文件,使更改生效

​ 4.再次运行conda config –show 命令,确认新的镜像源已经生效。

今天的文章镜像地址是什么_docker国内镜像源分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/81774.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注