Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 526 Bytes

50.md

File metadata and controls

19 lines (12 loc) · 526 Bytes
rank vote view answer url
50 2096 1246185 55 url

用pip升级所有包

可不可以用pip一次性升级所有的Python包?

注:在官方的issue里也有这个需求.


内部还不支持这个命令,但是可以这样:

pip freeze --local | grep -v '^\-e' | cut -d = -f 1  | xargs pip install -U