APT - how to install recommended packages after installing with --no-install-recommends switch?











up vote
2
down vote

favorite












I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?










share|improve this question






















  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10















up vote
2
down vote

favorite












I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?










share|improve this question






















  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10













up vote
2
down vote

favorite









up vote
2
down vote

favorite











I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?










share|improve this question













I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?







command-line apt






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 22 '16 at 22:27









Eduardo Cola

4,44821031




4,44821031












  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10


















  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10
















Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
– Stefan Hamcke
Jan 22 '16 at 22:48






Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
– Stefan Hamcke
Jan 22 '16 at 22:48














Is there any way of doing it with a simple apt-get, though?
– Eduardo Cola
Jan 22 '16 at 22:51




Is there any way of doing it with a simple apt-get, though?
– Eduardo Cola
Jan 22 '16 at 22:51




1




1




you could run apt-get remove <package> then apt-get install <package>
– Charles Green
Jan 22 '16 at 22:57




you could run apt-get remove <package> then apt-get install <package>
– Charles Green
Jan 22 '16 at 22:57












I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
– Stefan Hamcke
Jan 22 '16 at 23:00




I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
– Stefan Hamcke
Jan 22 '16 at 23:00












OK, thanks for the suggestions.
– Eduardo Cola
Jan 22 '16 at 23:10




OK, thanks for the suggestions.
– Eduardo Cola
Jan 22 '16 at 23:10










2 Answers
2






active

oldest

votes

















up vote
5
down vote



accepted










You can run apt-cache show package_you_care_about | grep Recommends.



This will show you all the recommended packages for that particular package. You can then install all the packages there.



For example, with gedit:



apt-cache show gedit | grep Recommends
output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





share|improve this answer























  • Thanks! That's what I was looking for. Answered + upvote.
    – Eduardo Cola
    Jan 22 '16 at 23:10


















up vote
2
down vote













To find all packages with missing recommended packages:



aptitude search '~RBrecommends:~i'






share|improve this answer








New contributor




ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f724462%2fapt-how-to-install-recommended-packages-after-installing-with-no-install-rec%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    5
    down vote



    accepted










    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





    share|improve this answer























    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10















    up vote
    5
    down vote



    accepted










    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





    share|improve this answer























    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10













    up vote
    5
    down vote



    accepted







    up vote
    5
    down vote



    accepted






    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





    share|improve this answer














    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Mar 24 '16 at 15:16

























    answered Jan 22 '16 at 23:02









    Mitch

    3,0961531




    3,0961531












    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10


















    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10
















    Thanks! That's what I was looking for. Answered + upvote.
    – Eduardo Cola
    Jan 22 '16 at 23:10




    Thanks! That's what I was looking for. Answered + upvote.
    – Eduardo Cola
    Jan 22 '16 at 23:10












    up vote
    2
    down vote













    To find all packages with missing recommended packages:



    aptitude search '~RBrecommends:~i'






    share|improve this answer








    New contributor




    ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      2
      down vote













      To find all packages with missing recommended packages:



      aptitude search '~RBrecommends:~i'






      share|improve this answer








      New contributor




      ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        up vote
        2
        down vote










        up vote
        2
        down vote









        To find all packages with missing recommended packages:



        aptitude search '~RBrecommends:~i'






        share|improve this answer








        New contributor




        ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        To find all packages with missing recommended packages:



        aptitude search '~RBrecommends:~i'







        share|improve this answer








        New contributor




        ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Dec 3 at 3:43









        ernobe

        211




        211




        New contributor




        ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        ernobe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f724462%2fapt-how-to-install-recommended-packages-after-installing-with-no-install-rec%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How did Captain America manage to do this?

            迪纳利

            南乌拉尔铁路局