Timeline for How to upgrade all Python packages with pip
Current License: CC BY-SA 4.0
24 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Mar 28, 2024 at 21:18 | comment | added | SmileMZ | that works for me, with python3.12 out of the box: pip3 list -o | cut -f1 -d' ' | tr " " "\n" | awk '{if(NR>=3)print}' | cut -d' ' -f1 | xargs -n1 pip3 install -U | |
| Aug 2, 2023 at 21:27 | history | edited | Benjamin Loison | CC BY-SA 4.0 |
Replace automatic Python syntax highlighting with Bash one
|
| May 22, 2023 at 14:30 | history | edited | raratiru | CC BY-SA 4.0 |
Updated as per the new pip version changes
|
| Feb 12, 2023 at 6:31 | history | edited | Peter Mortensen | CC BY-SA 4.0 |
Fixed the weird syntax highlighting (as a result, the diff looks more extensive than it really is - use view "Side-by-side Markdown" to compare).
|
| Aug 25, 2021 at 15:28 | history | edited | raratiru | CC BY-SA 4.0 |
added 14 characters in body
|
| Jun 20, 2020 at 9:12 | history | edited | CommunityBot |
Commonmark migration
|
|
| Jan 27, 2020 at 11:38 | history | edited | raratiru | CC BY-SA 4.0 |
Pip output format has changed
|
| Nov 9, 2018 at 13:19 | history | edited | raratiru | CC BY-SA 4.0 |
--format legacy is outdated, --format freeze is the current working tool
|
| Aug 2, 2017 at 19:49 | history | edited | raratiru | CC BY-SA 3.0 |
added 7 characters in body
|
| May 24, 2017 at 23:58 | history | edited | raratiru | CC BY-SA 3.0 |
added 32 characters in body
|
| Mar 3, 2017 at 11:59 | history | edited | raratiru | CC BY-SA 3.0 |
added 2 characters in body
|
| Dec 22, 2016 at 15:42 | history | edited | raratiru | CC BY-SA 3.0 |
added 7 characters in body
|
| Oct 12, 2016 at 13:11 | history | edited | raratiru | CC BY-SA 3.0 |
added 9 characters in body
|
| Sep 27, 2016 at 11:19 | history | edited | raratiru | CC BY-SA 3.0 |
added 126 characters in body
|
| Jul 24, 2016 at 8:28 | history | edited | raratiru | CC BY-SA 3.0 |
added 19 characters in body
|
| Jul 24, 2016 at 8:22 | history | edited | raratiru | CC BY-SA 3.0 |
added 19 characters in body
|
| Mar 27, 2016 at 0:11 | history | edited | raratiru | CC BY-SA 3.0 |
added 114 characters in body
|
| Dec 9, 2015 at 21:15 | comment | added | Jens |
Or: pip list --outdated | cut -d ' ' -f 1 | xargs -n 1 pip install --upgrade
|
|
| Nov 3, 2015 at 0:32 | history | rollback | raratiru |
Rollback to Revision 1
|
|
| Nov 3, 2015 at 0:31 | comment | added | raratiru |
OK, this is fair: You can add as many | sed 's/^<First characters of the error>.*//' as needed. Thank you!
|
|
| Oct 21, 2015 at 14:07 | history | edited | raratiru | CC BY-SA 3.0 |
added 7 characters in body
|
| Oct 13, 2015 at 21:22 | history | edited | raratiru | CC BY-SA 3.0 |
Provided another more complex command that caters for possible pip errors
|
| Aug 13, 2015 at 23:03 | comment | added | Chip Camden | Had to add filters for lines beginning with 'Could' and 'Some' because apparently pip sends warnings to stdout :( | |
| Mar 7, 2014 at 20:25 | history | answered | raratiru | CC BY-SA 3.0 |