When I issue the command apt-rdepends -p python-epydoc | grep NotInstalled I get the below output
$ apt-rdepends -p python-epydoc | grep NotInstalled
Reading package lists... Done
Building dependency tree
Reading state information... Done
Depends: debconf-2.0 [NotInstalled]
Depends: debconf-english [NotInstalled]
PreDepends: perlapi-5.10.0 [NotInstalled]
Depends: perlapi-5.10.0 [NotInstalled]
Depends: perlapi-5.10.0 [NotInstalled]
Depends: debconf-2.0 [NotInstalled]
Depends: debconf-2.0 [NotInstalled]
When I issue sudo apt-get install python-epydoc
$ sudo apt-get install python-epydoc
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
blt graphviz lacheck latex-beamer latex-xcolor lmodern luatex pgf preview-latex-style prosper ps2eps python-docutils python-lxml python-pygments python-roman
python-tk tcl8.5 tex-common texlive-base texlive-binaries texlive-common texlive-doc-base texlive-extra-utils texlive-font-utils texlive-fonts-recommended
texlive-fonts-recommended-doc texlive-generic-recommended texlive-latex-base texlive-latex-base-doc texlive-latex-extra texlive-latex-extra-doc
texlive-latex-recommended texlive-latex-recommended-doc texlive-luatex texlive-pictures texlive-pictures-doc texlive-pstricks texlive-pstricks-doc tipa tk8.5
Suggested packages:
blt-demo graphviz-doc auctex texlive-lang-french epydoc-doc python-profiler python-lxml-dbg python-chardet tix python-tk-dbg tclreadline debhelper perl-tk dvidvi
fragmaster latexmk xindy purifyeps psutils t1utils texpower
The following NEW packages will be installed:
blt graphviz lacheck latex-beamer latex-xcolor lmodern luatex pgf preview-latex-style prosper ps2eps python-docutils python-epydoc python-lxml python-pygments
python-roman python-tk tcl8.5 tex-common texlive-base texlive-binaries texlive-common texlive-doc-base texlive-extra-utils texlive-font-utils
texlive-fonts-recommended texlive-fonts-recommended-doc texlive-generic-recommended texlive-latex-base texlive-latex-base-doc texlive-latex-extra
texlive-latex-extra-doc texlive-latex-recommended texlive-latex-recommended-doc texlive-luatex texlive-pictures texlive-pictures-doc texlive-pstricks
texlive-pstricks-doc tipa tk8.5
0 upgraded, 41 newly installed, 0 to remove and 68 not upgraded.
Need to get 370MB/436MB of archives.
After this operation, 724MB of additional disk space will be used.
Do you want to continue [Y/n]?
The output of apt-get install says that I have to install packages that were not given by the command apt-rdepends -p python-epydoc | grep NotInstalled.
Shouldn't the NotInstalled packages in the former command and the packages to be installed in the latter command be the same? If so, what is the reason for the difference?