Python modules updated with one command on Linux
You can update all Python modules with one command on Linux:
pip3 list -o –format columns| cut -d‘ ‚ -f1|xargs -n1 pip install -U
Here you can see how it works. You see that the command will update all modules automatically.