欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Ubuntu 下 apt 及 pip 使用国内源

程序员文章站 2022-12-20 17:58:53
Ubuntu 下 apt 及 pip 使用国内源本文以 Ubuntu 20.04 为例,同时列出了低版本的 Ubuntu 解决方案一、apt 使用阿里云源备份原文件/etc/apt/source.list 是包管理工具 apt 记录软件包仓库位置的配置文件sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak查看版本信息不同 Linux 版本在下一步中配置有一点点不同,即在镜像链接后首个参数不同。下面列出不同 Ubuntu...

Ubuntu 下 apt 及 pip 使用国内源

本文以 Ubuntu 20.04 为例,同时列出了低版本的 Ubuntu 解决方案

一、apt 使用阿里云源

  1. 备份原文件

    /etc/apt/source.list 是包管理工具 apt 记录软件包仓库位置的配置文件

    sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
    
  2. 查看版本信息

    不同 Linux 版本在下一步中配置有一点点不同,即在镜像链接后首个参数不同。下面列出不同 Ubuntu 发行版的版本代号(Codename)

    lsb_release -c
    
    # 12.04 precise
    # 14.04 trusty
    # 15.04 vivid
    # 15.10 wily
    # 16.04 xenial
    # 18.04 bionic
    # 20.04 focal
    
  3. 编辑源文件列表

    编辑 source.list ,未安装 vim 可使用 vi ,个人建议安装 vim ,功能更强大

    sudo vim /etc/apt/sources.list
    
    # 未安装vim的解决方案
    #1 sudo vi /etc/apt/sources.list
    
    #2 sudo apt-get install vim
    #  sudo vim /etc/apt/sources.list
    

    讲列表中原有配置删除或注释掉,换做以下内容(Ubuntu 20.04 可直接 copy,低版本只需将下列链接后首个参数 focal 替换为上一步中查找的 Codename)

    deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
    
    deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
    
    deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
    
    deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
     
    deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
    
    deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
    
    deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
    
    deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
    
    deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
    
    deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
    
  4. 更新软件列表及软件包

    更新软件列表及软件包后即可,速度提升极其显著

    sudo apt-get update #更新软件列表
    sudo apt-get upgrade #更新软件包
    

二、pip/pip3 使用清华源

​ 以下参照清华镜像站使用帮助

  1. 临时使用

    # pip3
    pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
        
    # pip
    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
    
  2. 设置为默认

    # pip3
    # 注意更新指令前面是 pip3 后面是 pip
    pip3 install --upgrade pip -U #更新
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple #配置
        
    # pip
    pip install pip -U #更新
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple #配置
    

    如果 pip 默认源的网络连接较差,可以临时使用清华镜像站来升级 pip:

    # pip3
    pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U
    
    # pip
    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U
    

本文地址:https://blog.csdn.net/SuanCaiyu1806/article/details/107500016