Below is the command that we use to update all outdated packages in pip.
1 | pip list --outdated -- format =freeze | grep - v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U; |
This post is also available in: Greek
Below is the command that we use to update all outdated packages in pip.
1 | pip list --outdated -- format =freeze | grep - v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U; |
This post is also available in: Greek