关于python更换永久镜像源

在Python中更换永久镜像源主要有两种方式:pip镜像源和conda镜像源。以下是详细的配置方法:

1. pip镜像源配置

方法一:使用命令直接配置(推荐)

bash 复制代码
# 清华镜像源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

# 或者使用阿里云镜像源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

# 或者使用中科大镜像源
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/

方法二:手动创建配置文件

Windows系统:

bash 复制代码
# 在用户目录下创建pip文件夹和pip.ini文件
# 路径:%USERPROFILE%\pip\pip.ini

Linux/Mac系统:

bash 复制代码
# 在用户目录下创建.pip文件夹和pip.conf文件
# 路径:~/.pip/pip.conf

配置文件内容:

ini 复制代码
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
timeout = 6000

[install]
trusted-host = pypi.tuna.tsinghua.edu.cn

2. conda镜像源配置

方法一:使用命令配置

bash 复制代码
# 添加清华镜像源
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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/

# 设置搜索时显示通道地址
conda config --set show_channel_urls yes

# 移除默认源(可选)
conda config --remove channels defaults

# 查看当前配置
conda config --show

方法二:直接编辑.condarc文件

在用户目录下创建或编辑.condarc文件:

Windows: C:\Users\用户名\.condarc
Linux/Mac: ~/.condarc

yaml 复制代码
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/cloud/conda-forge/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/
show_channel_urls: true
ssl_verify: true

3. 常用镜像源地址

pip镜像源:

  • 清华https://pypi.tuna.tsinghua.edu.cn/simple
  • 阿里云https://mirrors.aliyun.com/pypi/simple/
  • 中科大https://pypi.mirrors.ustc.edu.cn/simple/
  • 豆瓣https://pypi.douban.com/simple/
  • 华为云https://repo.huaweicloud.com/repository/pypi/simple/

conda镜像源:

  • 清华https://mirrors.tuna.tsinghua.edu.cn/anaconda/
  • 中科大https://mirrors.ustc.edu.cn/anaconda/

4. 验证配置

配置完成后,可以通过以下命令验证:

bash 复制代码
# 查看pip配置
pip config list

# 查看conda配置
conda config --show

# 测试安装包(pip)
pip install requests -v

# 测试安装包(conda)
conda install numpy -v

5. 恢复默认源

如果需要恢复默认源:

bash 复制代码
# pip恢复默认
pip config unset global.index-url

# conda恢复默认
conda config --remove-key channels

选择离你地理位置较近的镜像源可以获得更好的下载速度。清华镜像源在国内访问速度通常比较稳定。

相关推荐
F_D_Z1 小时前
【解决办法】网络训练报错AttributeError: module ‘jax.core‘ has no attribute ‘Shape‘.
开发语言·python·jax
前端伪大叔1 小时前
第29篇:99% 的量化新手死在挂单上:Freqtrade 隐藏技能揭秘
后端·python·github
韩曙亮2 小时前
【人工智能】AI 人工智能 技术 学习路径分析 ① ( Python语言 -> 微积分 / 概率论 / 线性代数 -> 机器学习 )
人工智能·python·学习·数学·机器学习·ai·微积分
喵叔哟2 小时前
6.配置管理详解
后端·python·flask
曾经的三心草2 小时前
基于正倒排索引的Java文档搜索引擎3-实现Index类-实现搜索模块-实现DocSearcher类
java·python·搜索引擎
MOMO陌染3 小时前
Python 饼图入门:3 行代码展示数据占比
后端·python
vvoennvv4 小时前
【Python TensorFlow】 TCN-GRU时间序列卷积门控循环神经网络时序预测算法(附代码)
python·rnn·神经网络·机器学习·gru·tensorflow·tcn
自学互联网4 小时前
使用Python构建钢铁行业生产监控系统:从理论到实践
开发语言·python
无心水4 小时前
【Python实战进阶】7、Python条件与循环实战详解:从基础语法到高级技巧
android·java·python·python列表推导式·python条件语句·python循环语句·python实战案例