python 如何添加国内源_PyPI使用国内源

# pip install web.py -i http://pypi.douban.com/simple

如果有如下报错:

请使用命令:

# pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

如果想配置成默认的源,方法如下:

需要创建或修改配置文件(一般都是创建),

linux的文件在~/.pip/pip.conf,

windows在%HOMEPATH%\pip\pip.ini),

修改内容为:

[global]

index-url = http://pypi.douban.com/simple

[install]

trusted-host=pypi.douban.com

这样在使用pip来安装时,会默认调用该镜像。

临时使用其他源安装软件包的python脚本如下:

#!/usr/bin/python

import os

package = raw_input("Please input the package which you want to install!\n")

command = "pip install %s -i http://pypi.mirrors.ustc.edu.cn/simple --trusted-host pypi.mirrors.ustc.edu.cn" % package

os.system(command)

也可以使用读入文件进行安装。

ok,仅以记录一下,以便于后期查阅!

------日期:2018年11月1日 增加Python配置pip默认源脚本,复制到pip_source.py,执行即可。

#!/usr/bin/python#coding: utf-8

importplatformimportos

os_type=platform.system()if "Linux" ==os_type:

fileDirPath= "%s/.pip" % os.path.expanduser('~')

filePath= "%s/pip.conf" %fileDirPathif notos.path.isdir(fileDirPath):

os.mkdir(fileDirPath)

fo= open(filePath, "w")

fo.write("[global]\nindex-url=https://pypi.tuna.tsinghua.edu.cn/simple/\n[install]\ntrusted-host=pypi.tuna.tsinghua.edu.cn\n")

fo.close()print "Configuration is complete"

elif "Windows" ==os_type:

fileDirPath= "%s\\pip" % os.path.expanduser('~')

filePath= "%s\\pip.ini" %fileDirPathif notos.path.isdir(fileDirPath):

os.mkdir(fileDirPath)

fo= open(filePath, "w")

fo.write("[global]\nindex-url=https://pypi.tuna.tsinghua.edu.cn/simple/\n[install]\ntrusted-host=pypi.tuna.tsinghua.edu.cn\n")

fo.close()print "Configuration is complete"

else:

exit("Your platform is unknow!")

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值