From 75f993b9c03dd51613964f9dfa1b7b86f96ccdfb Mon Sep 17 00:00:00 2001 From: Nuno Agostinho Date: Fri, 27 Nov 2020 01:02:20 +0000 Subject: [PATCH] python: include example using pip (#4956) --- pages/common/python.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/python.md b/pages/common/python.md index 5823f85125..63ce36f969 100644 --- a/pages/common/python.md +++ b/pages/common/python.md @@ -23,6 +23,10 @@ `python -m {{module}} {{arguments}}` +- Install a package using pip: + +`python -m pip install {{package_name}}` + - Interactively debug a Python script: `python -m pdb {{script.py}}`