1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH PIPDEPTREE "1" "August 2018" "pipdeptree 0.13.0" "User Commands"
.SH NAME
pipdeptree \- display dependency tree of the installed Python 3 packages
display dependency tree of the installed Python packages
.SH SYNOPSIS
.B pipdeptree
[\-h] [\-v] [\-f] [\-a] [\-l] [\-u] [\-w [{silence,suppress,fail}]]
[\-r] [\-p PACKAGES] [\-e PACKAGES] [\-j] [\-\-json\-tree]
[\-\-graph\-output OUTPUT_FORMAT]
.SH DESCRIPTION
Dependency tree of the installed python packages
.SH OPTIONS
.SS "optional arguments:"
.TP
\fB\-h\fR, \fB\-\-help\fR
show this help message and exit
.TP
\fB\-v\fR, \fB\-\-version\fR
show program's version number and exit
.TP
\fB\-f\fR, \fB\-\-freeze\fR
Print names so as to write freeze files
.TP
\fB\-a\fR, \fB\-\-all\fR
list all deps at top level
.TP
\fB\-l\fR, \fB\-\-local\-only\fR
If in a virtualenv that has global access do not show
globally installed packages
.TP
\fB\-u\fR, \fB\-\-user\-only\fR
Only show installations in the user site dir
.TP
\fB\-w\fR [{silence,suppress,fail}], \fB\-\-warn\fR [{silence,suppress,fail}]
Warning control. "suppress" will show warnings but
return 0 whether or not they are present. "silence"
will not show warnings at all and always return 0.
"fail" will show warnings and return 1 if any are
present. The default is "suppress".
.TP
\fB\-r\fR, \fB\-\-reverse\fR
Shows the dependency tree in the reverse fashion ie.
the sub\-dependencies are listed with the list of
packages that need them under them.
.TP
\fB\-p\fR PACKAGES, \fB\-\-packages\fR PACKAGES
Comma separated list of select packages to show in the
output. If set, \fB\-\-all\fR will be ignored.
.TP
\fB\-e\fR PACKAGES, \fB\-\-exclude\fR PACKAGES
Comma separated list of select packages to exclude
from the output. If set, \fB\-\-all\fR will be ignored.
.TP
\fB\-j\fR, \fB\-\-json\fR
Display dependency tree as json. This will yield "raw"
output that may be used by external tools. This option
overrides all other options.
.TP
\fB\-\-json\-tree\fR
Display dependency tree as json which is nested the
same way as the plain text output printed by default.
This option overrides all other options (except
\fB\-\-json\fR).
.TP
\fB\-\-graph\-output\fR OUTPUT_FORMAT
Print a dependency graph in the specified output
format. Available are all formats supported by
GraphViz, e.g.: dot, jpeg, pdf, png, svg
.SH AUTHOR
This manpage was written by Andreas Tille for the Debian distribution and can be used for any other usage of the program.
|