1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

python: include example using pip (#4956)

This commit is contained in:
Nuno Agostinho 2020-11-27 01:02:20 +00:00 committed by GitHub
parent e6c0dfb591
commit 75f993b9c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}}`