Updating the Python packages with one command
You can update all Python modules with one command on Linux:
pip3 list -o –format columns| cut -d‘ ‚ -f1|xargs -n1 pip install -U
You can update all Python modules with one command on Linux:
pip3 list -o –format columns| cut -d‘ ‚ -f1|xargs -n1 pip install -U