首页 > 编程 > Python > 正文

python自动安装pip

2019-11-25 18:26:37
字体:
来源:转载
供稿:网友

如果是windows安装完成后,需要将'/Python27/Scripts/'加入系统环境变量

复制代码 代码如下:

# coding=utf-8
import os
import urllib2
url='https://raw.github.com/pypa/pip/master/contrib/get-pip.py'
print 'load begin,please waite'
response=urllib2.urlopen(url)
with open('./download.py','w') as f:
 f.write(response.read())
print 'load end'

import download
download.main()

print 'clear up'
filepath=['./download.py','./download.pyc']
try:
 for path in filepath:
  os.remove(path)
except :
 pass

print 'insall pip success,please add /'/Python27/Scripts/' to u enveronment path'

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表