博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu 16.04下更换源和pip源【转】
阅读量:6843 次
发布时间:2019-06-26

本文共 1306 字,大约阅读时间需要 4 分钟。

本文转载自:

  写在前面的话

    本文主要内容是更换系统源为清华大学源,更换python的pip源为清华大学源。 使用的linux发行版为ubuntu 16.04 64位,文本编辑器为gedit,

 

一、更换系统源

    系统源用于ubuntu中的软件更新下载。登陆用户为root(获得最高权限) 修改步骤如下:

 1,备份系统源

 

cp /etc/apt/sources-list  /etc/apt/sources-list.bak

2,打开sources-list

   gedit sources-list

3,修改源

  1.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted
  2.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted
  3.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial universe
  4.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates universe
  5.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial multiverse
  6.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates multiverse
  7.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
  8.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted
  9.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security universe
  10.  
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security multiverse

4,更新下源的缓存

apt-get update

 

5,更新软件

apt-get upgrade

 

 

二、更改pip 源

首先需要在用户目录下创建.pip文件夹,并创建pip.conf文件,

1,进入用户目录(这时使用普通用户登陆)

cd ~

 

2,创建pip.conf文件

touch pip.conf

 

3,打开文件

gedit pip.conf

 

4,复制下列内容至pip.conf

  1.  
    [global]
  2.  
    trusted-host = pypi.mirrors.ustc.edu.cn
  3.  
    index-url = https://pypi.mirrors.ustc.edu.cn/simple
你可能感兴趣的文章
PHP图片压缩(TinyPNG在线API)和(使用Imagick扩展)
查看>>
Linux内存管理之mmap详解 【转】
查看>>
设计模式(一)简单工厂(创建型)(Java&&PHP)
查看>>
Code First开发系列之数据库迁移
查看>>
UI方面书籍推荐
查看>>
Spark SQL概念学习系列之Spark SQL 优化策略(五)
查看>>
Java:基本数据类型包装类
查看>>
HDU 4917 Permutation
查看>>
pgpool-II的 FATAL: role "nobody" does not exist 错误
查看>>
jsp路径
查看>>
关于location.href几种用法的区别
查看>>
【转】拷贝构造函数/深拷贝/浅拷贝
查看>>
什么是类比估算法=自上而下的估算
查看>>
[Java] Java 打包成jar包 和 解压jar包
查看>>
模拟ajax的 script请求
查看>>
2013年小米校园招聘笔试题
查看>>
About me
查看>>
单片机第13课:串口通信---向计算机发送数据
查看>>
[译]更改自定义活动设计器上的图标
查看>>
使用WF4 状态机CTP1 进行工作流开发
查看>>