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

「Python」conda与pip升级所有的包

时间:2018-10-08 20:40:56      阅读:615      评论:0      收藏:0      [点我收藏+]

标签:user   cal   ash   global   oba   install   pip   sim   gre   

conda:

conda update --a

pip:

pip freeze --local | grep -v ‘^-e‘ | cut -d = -f 1  | xargs -n1 sudo pip install -U # 有风险
pip freeze --user --local  | grep -v ‘^-e‘ | cut -d = -f 1  | xargs -n1 pip install --user -U # 升级用户的包

pip更换源:

mkdir -p ~/.config/pip
vim ~/.config/pip/pip.conf
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

「Python」conda与pip升级所有的包

标签:user   cal   ash   global   oba   install   pip   sim   gre   

原文地址:https://www.cnblogs.com/samhx/p/9756469.html

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