美文网首页
Ubuntu更换pip镜像源

Ubuntu更换pip镜像源

作者: Yznx_请叫我小哥 | 来源:发表于2019-04-10 18:21 被阅读0次
the photo from unsplash

前置条件

Ubuntu18.04
时间:2019.4.10

安装pip3

在Ubuntu18.04中Python版本有两个,一个是python2.x,还有一个是Python3.6.5。基本上都是使用Python3,首先要安装pip3

sudo apt-get install python3-pip

修改镜像源

新建一个.pip3文件夹,然后在文件夹中新建一个pip3.conf文件写入下面的内容:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com

然后保存就好。

附录

国内优秀pip源

  阿里云 http://mirrors.aliyun.com/pypi/simple/ 
  中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 
  豆瓣(douban) http://pypi.douban.com/simple/ 
  清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 
  中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

相关文章

  • Ubuntu更换pip镜像源

    前置条件 Ubuntu18.04时间:2019.4.10 安装pip3 在Ubuntu18.04中Python版本...

  • 【环境搭建】Jupyter Notebook的安装与配置

    写在前面的两点建议:1. 在开始动手实现教程之前,应当先更换你的pip镜像源:win10更换镜像源、ubuntu1...

  • PyQt5环境搭建

    PyQt5 环境搭建 更换python镜像源 1.pip升级 2.pip国内的一些镜像 3.更换源在windows...

  • pip更新及换源

    pip更新 pip install pip -U # 升级pip到最新版本 更换镜像源 pip config se...

  • pip 更换镜像源

    临时使用镜像源代理pip install -i https://pypi.tuna.tsinghua.edu.cn...

  • 00.pip安装包

    pip安装更换镜像源 pip install 包名 -i http://pypi.douban.com/simpl...

  • centos初始环境

    更换镜像源 2.安装python3和pip3

  • pip 源更换国内镜像源

    pip 源更换国内镜像 用 pip 管理工具安装库文件时,默认使用官方的源,因此在国内的下载速度会比较慢。所以我们...

  • 打造宜居 Ubuntu16.04

    Windows用腻了,试试Ubuntu吧! Windows用腻了,试试Ubuntu吧 更换国内镜像源 1. 备份/...

  • pip更换软件镜像源

    由于众所周知的原因,国内连不上pypi.python.org所以,使用pip给Python安装软件时,经常出现错误...

网友评论

      本文标题:Ubuntu更换pip镜像源

      本文链接:https://www.haomeiwen.com/subject/ptvoiqtx.html