I am looking to make a list of packages which have dependancy on Python. How to search for it ?
Another two would be that the dependency would be in recommends (1) or suggests (2) . But when Python is in suggests then show suggests only, or if Python is in recommends then show only those packages which have Python in recommends.
~i
which would search only for installed packages. – Braiam Sep 25 '16 at 19:07[$] aptitude search '?depends("python-gtk2") ~i'
and that worked. – shirish Sep 25 '16 at 19:51