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

批量更新python库

时间:2017-10-09 18:31:07      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:cep   python库   code   --   div   pip   color   get   imp   

1 import pip
2 from subprocess import call
3 
4 for dist in pip.get_installed_distributions():
5     try:
6         call("pip install --upgrade " + dist.project_name, shell=True)
7     except Exception as e:
8         print(e)

 

批量更新python库

标签:cep   python库   code   --   div   pip   color   get   imp   

原文地址:http://www.cnblogs.com/laresh/p/7642126.html

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