Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
python
/
Freeze installed packages
Freeze installed packages
python
Save exact versions of all installed packages
pip freeze > requirements.txt
⎘ copy
#python
more python
all 15 commands →
Show outdated packages
pip list --outdated --format=columns
Run module as script
python3 -m http.server 8080
One-liner JSON pretty print
python3 -m json.tool < input.json
Profile script
python3 -m cProfile -s cumulative script.py | head -30
Debug with pdb
python3 -m pdb script.py