Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 414 Bytes

File metadata and controls

25 lines (20 loc) · 414 Bytes

Python Cheat Sheet

Installation

Install pip:

sudo apt install -y python3-pip

Package Management

List outdated packages:

python3 -m pip list --outdated

Update packages:

Host:

python3 -m pip freeze --user | cut -d'=' -f1 | xargs -n1 python3 -m pip install -U

VM:

python3 -m pip freeze | cut -d'=' -f1 | xargs -n1 python3 -m pip install -U