如果是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'
最后
以上就是不安灰狼最近收集整理的关于python自动安装pip的全部内容,更多相关python自动安装pip内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复