Debian (.deb) package not installing in Ubuntu 16.04 [duplicate]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
1
down vote

favorite
1













This question already has an answer here:



  • How do I install a .deb file via the command line?

    11 answers



I want to install google-chrome-stable debian (.deb) package but it doesn't install. The process succeeds, but Google Chrome doesn't appear. I use this command:



sudo dpkg -i /home/aakaashsingh/Downloads/google-chrome-stable.deb









share|improve this question















marked as duplicate by fkraiem, muru, karel, heemayl command-line
Users with the  command-line badge can single-handedly close command-line questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Feb 3 at 17:53


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


















    up vote
    1
    down vote

    favorite
    1













    This question already has an answer here:



    • How do I install a .deb file via the command line?

      11 answers



    I want to install google-chrome-stable debian (.deb) package but it doesn't install. The process succeeds, but Google Chrome doesn't appear. I use this command:



    sudo dpkg -i /home/aakaashsingh/Downloads/google-chrome-stable.deb









    share|improve this question















    marked as duplicate by fkraiem, muru, karel, heemayl command-line
    Users with the  command-line badge can single-handedly close command-line questions as duplicates and reopen them as needed.

    StackExchange.ready(function()
    if (StackExchange.options.isMobile) return;

    $('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
    var $hover = $(this).addClass('hover-bound'),
    $msg = $hover.siblings('.dupe-hammer-message');

    $hover.hover(
    function()
    $hover.showInfoMessage('',
    messageElement: $msg.clone().show(),
    transient: false,
    position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
    dismissable: false,
    relativeToBody: true
    );
    ,
    function()
    StackExchange.helpers.removeMessages();

    );
    );
    );
    Feb 3 at 17:53


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
















      up vote
      1
      down vote

      favorite
      1









      up vote
      1
      down vote

      favorite
      1






      1






      This question already has an answer here:



      • How do I install a .deb file via the command line?

        11 answers



      I want to install google-chrome-stable debian (.deb) package but it doesn't install. The process succeeds, but Google Chrome doesn't appear. I use this command:



      sudo dpkg -i /home/aakaashsingh/Downloads/google-chrome-stable.deb









      share|improve this question
















      This question already has an answer here:



      • How do I install a .deb file via the command line?

        11 answers



      I want to install google-chrome-stable debian (.deb) package but it doesn't install. The process succeeds, but Google Chrome doesn't appear. I use this command:



      sudo dpkg -i /home/aakaashsingh/Downloads/google-chrome-stable.deb




      This question already has an answer here:



      • How do I install a .deb file via the command line?

        11 answers







      command-line software-installation dpkg deb






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 3 at 15:19









      muru

      130k19275471




      130k19275471










      asked Feb 3 at 3:51







      user790735











      marked as duplicate by fkraiem, muru, karel, heemayl command-line
      Users with the  command-line badge can single-handedly close command-line questions as duplicates and reopen them as needed.

      StackExchange.ready(function()
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function()
      $hover.showInfoMessage('',
      messageElement: $msg.clone().show(),
      transient: false,
      position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
      dismissable: false,
      relativeToBody: true
      );
      ,
      function()
      StackExchange.helpers.removeMessages();

      );
      );
      );
      Feb 3 at 17:53


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






      marked as duplicate by fkraiem, muru, karel, heemayl command-line
      Users with the  command-line badge can single-handedly close command-line questions as duplicates and reopen them as needed.

      StackExchange.ready(function()
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function()
      $hover.showInfoMessage('',
      messageElement: $msg.clone().show(),
      transient: false,
      position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
      dismissable: false,
      relativeToBody: true
      );
      ,
      function()
      StackExchange.helpers.removeMessages();

      );
      );
      );
      Feb 3 at 17:53


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          4
          down vote



          accepted










          Looks like dependencies are not satisfied. You can either use gdebi package installer. It'll install deb package in a very user friendly way and it'll also resolve any unsatisfied dependencies. Install it using this command:



          sudo apt-get install gdebi


          Then open the deb file using gdebi and it'll install it. Make sure that you're connected to internet while installing the deb file using gdebi, because it needs dependencies to be downloaded.






          share|improve this answer



























            up vote
            0
            down vote













            Just run sudo apt-get install --fix-broken after installing. This will fix all problems with dependencies automatically. Then Google Chrome appear in apps list.






            share|improve this answer


























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              4
              down vote



              accepted










              Looks like dependencies are not satisfied. You can either use gdebi package installer. It'll install deb package in a very user friendly way and it'll also resolve any unsatisfied dependencies. Install it using this command:



              sudo apt-get install gdebi


              Then open the deb file using gdebi and it'll install it. Make sure that you're connected to internet while installing the deb file using gdebi, because it needs dependencies to be downloaded.






              share|improve this answer
























                up vote
                4
                down vote



                accepted










                Looks like dependencies are not satisfied. You can either use gdebi package installer. It'll install deb package in a very user friendly way and it'll also resolve any unsatisfied dependencies. Install it using this command:



                sudo apt-get install gdebi


                Then open the deb file using gdebi and it'll install it. Make sure that you're connected to internet while installing the deb file using gdebi, because it needs dependencies to be downloaded.






                share|improve this answer






















                  up vote
                  4
                  down vote



                  accepted







                  up vote
                  4
                  down vote



                  accepted






                  Looks like dependencies are not satisfied. You can either use gdebi package installer. It'll install deb package in a very user friendly way and it'll also resolve any unsatisfied dependencies. Install it using this command:



                  sudo apt-get install gdebi


                  Then open the deb file using gdebi and it'll install it. Make sure that you're connected to internet while installing the deb file using gdebi, because it needs dependencies to be downloaded.






                  share|improve this answer












                  Looks like dependencies are not satisfied. You can either use gdebi package installer. It'll install deb package in a very user friendly way and it'll also resolve any unsatisfied dependencies. Install it using this command:



                  sudo apt-get install gdebi


                  Then open the deb file using gdebi and it'll install it. Make sure that you're connected to internet while installing the deb file using gdebi, because it needs dependencies to be downloaded.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 3 at 3:52







                  user790748





























                      up vote
                      0
                      down vote













                      Just run sudo apt-get install --fix-broken after installing. This will fix all problems with dependencies automatically. Then Google Chrome appear in apps list.






                      share|improve this answer
























                        up vote
                        0
                        down vote













                        Just run sudo apt-get install --fix-broken after installing. This will fix all problems with dependencies automatically. Then Google Chrome appear in apps list.






                        share|improve this answer






















                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          Just run sudo apt-get install --fix-broken after installing. This will fix all problems with dependencies automatically. Then Google Chrome appear in apps list.






                          share|improve this answer












                          Just run sudo apt-get install --fix-broken after installing. This will fix all problems with dependencies automatically. Then Google Chrome appear in apps list.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Feb 3 at 12:11









                          dengr1065

                          12




                          12












                              Popular posts from this blog

                              pylint3 and pip3 broken

                              Missing snmpget and snmpwalk

                              How to enroll fingerprints to Ubuntu 17.10 with VFS491