dependencies - Linux packages Where to download complete dependency list -
where find list of dependencies (direct , transitive dependencies) of popular linux packages?
i want complete list (just list) in form of dependency graphs, exploration. there downloadable list of dependencies of popular linux packages somewhere?
there offline dvd based installations (like debian/ubuntu etc). there tool extract dependency information given packages in dvds?
i have seen question below not want. howto list dependencies of package on linux?
thnx
on debian or ubuntu can issue
apt-cache show $package_name you print list of package dependencies using:
for pkg in $(dpkg --get-selections | cut -f1) ; apt-cache depends "$pkg" ; done
Comments
Post a Comment