.condarc pip文件配置
时间: 2023-12-15 14:07:28 浏览: 110
conda与pip下载镜像配置文件
5星 · 资源好评率100%
以下是一个示例的.condarc文件配置,用于配置pip的默认下载源:
channels:
- conda-forge
- defaults
# 设置默认的下载源
default_channels:
- 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/pkgs/r
# 设置搜索时显示的下载源
custom_channels:
conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
# 配置代理服务器(如果需要的话)
proxy_servers:
http: http://<proxy-server-url>:<port>
https: https://<proxy-server-url>:<port>
上述配置中,channels部分指定了要使用的下载源,这里使用了conda-forge和defaults两个源。default_channels部分设置了默认的下载源,这里使用了清华大学镜像站提供的源。custom_channels部分可以设置自定义的下载源,这里将conda-forge指定为清华大学镜像站提供的源。最后,如果需要通过代理服务器进行下载,可以在proxy_servers部分配置相应的代理服务器。
请注意,这只是一个示例配置文件,你可以根据自己的需求进行相应的修改。在使用前,请确保你已经备份好原始的.condarc文件,以防修改出现问题。
阅读全文