码迷,mamicode.com
首页 > 编程语言 > 详细

Python修改pip使用国内源

时间:2020-03-24 11:00:29      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:requests   装包   glob   阿里   服务器   阿里云   tps   linu   window   

使用python必然离不开pip这一强大的包管理工具.但是由于pip的官方源在国外,所以造成安装包速度要么特别慢或者根本就安装不了,所以修改python源是安装包时必备的技能


临时使用

使用阿里源安装requests
pip install requests -i https://mirrors.aliyun.com/pypi/simple

永久修改:
自动修改(推荐)

pip config set global.trusted-host mirrors.aliyun.com
pip config set global.index-url https://mirrors.aliyun.com/simple

手动修改

  • linux/mac (没有就创建一个)

    vi ~/.pip/pip.conf
    [global]
    trusted-host=mirrors.aliyun.com
    index-url=https://mirrors.aliyun.com/pypi/simple/
  • windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx-user\pip\pip.ini
    [global]
    trusted-host=mirrors.aliyun.com
    index-url=https://mirrors.aliyun.com/pypi/simple/

    注意:为了一些不必要的麻烦建议把trusted-host也同步设置.

常用源:
官方 https://pypi.python.org/simple/
阿里云
http://mirrors.aliyun.com/pypi/simple/
豆瓣
http://pypi.douban.com/simple/
清华
https://pypi.tuna.tsinghua.edu.cn/simple


个人喜好,因为管理的服务器大多是阿里云,所以安装包时第一步就是先设置源为阿里,不光因为速度快,还因为走的内网不花费流量哟.

that‘s all

Python修改pip使用国内源

标签:requests   装包   glob   阿里   服务器   阿里云   tps   linu   window   

原文地址:https://blog.51cto.com/rainbird/2481124

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!