I can edit
/etc/apt/apt.conf
and add the line:
apt::install-recommends "false";
But that will always skip recommendations.
How can I do this only once for the installation to a certain package without changing the config of apt?
I can edit
/etc/apt/apt.conf
and add the line:
apt::install-recommends "false";
But that will always skip recommendations.
How can I do this only once for the installation to a certain package without changing the config of apt?
From man 8 apt-get
:
--no-install-recommends
Do not consider recommended packages as a dependency for installing. Configuration Item: APT::Install-Recommends.
apt.conf
I couldn't find an option like --install-recommends
http://unix.stackexchange.com/questions/122289/why-is-install-recommends-default-true
– rubo77
Mar 30 '14 at 19:49
-o ...
OK thanks
– rubo77
Mar 30 '14 at 21:05