E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages











up vote
10
down vote

favorite












I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.



However, I got this error:



 corebird depends on libglib2.0-0 (>= 2.41.1); however:
Package libglib2.0-0:amd64 is not configured yet.
corebird depends on libgtk-3-0 (>= 3.13.7); however:
Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.


So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i for the libglib deb, I got this:



pkg: error processing package libglib2.0-0:amd64 (--install):
package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)


and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.



This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64.



So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install. I did that, and now I get this:



sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies


Apparently, the glib 2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.



Does anyone know how to fix this issue?



My /var/log/dist-upgrade/apt.log file is empty:



cat /var/log/dist-upgrade/apt.log
cat: /var/log/dist-upgrade/apt.log: No such file or directory


and the command dpkg --get-selections | grep hold returns nothing:



$ dpkg --get-selections | grep hold
$


EDIT



This question is not a duplicate. I can't install aptitude even if I wanted to (same error.)










share|improve this question




























    up vote
    10
    down vote

    favorite












    I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.



    However, I got this error:



     corebird depends on libglib2.0-0 (>= 2.41.1); however:
    Package libglib2.0-0:amd64 is not configured yet.
    corebird depends on libgtk-3-0 (>= 3.13.7); however:
    Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.


    So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i for the libglib deb, I got this:



    pkg: error processing package libglib2.0-0:amd64 (--install):
    package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)


    and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.



    This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64.



    So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install. I did that, and now I get this:



    sudo apt-get -f install
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Correcting dependencies... failed.
    The following packages have unmet dependencies:
    corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
    libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
    libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
    libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
    libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
    E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
    E: Unable to correct dependencies


    Apparently, the glib 2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.



    Does anyone know how to fix this issue?



    My /var/log/dist-upgrade/apt.log file is empty:



    cat /var/log/dist-upgrade/apt.log
    cat: /var/log/dist-upgrade/apt.log: No such file or directory


    and the command dpkg --get-selections | grep hold returns nothing:



    $ dpkg --get-selections | grep hold
    $


    EDIT



    This question is not a duplicate. I can't install aptitude even if I wanted to (same error.)










    share|improve this question


























      up vote
      10
      down vote

      favorite









      up vote
      10
      down vote

      favorite











      I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.



      However, I got this error:



       corebird depends on libglib2.0-0 (>= 2.41.1); however:
      Package libglib2.0-0:amd64 is not configured yet.
      corebird depends on libgtk-3-0 (>= 3.13.7); however:
      Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.


      So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i for the libglib deb, I got this:



      pkg: error processing package libglib2.0-0:amd64 (--install):
      package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)


      and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.



      This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64.



      So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install. I did that, and now I get this:



      sudo apt-get -f install
      Reading package lists... Done
      Building dependency tree
      Reading state information... Done
      Correcting dependencies... failed.
      The following packages have unmet dependencies:
      corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
      libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
      libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
      libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
      libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
      E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
      E: Unable to correct dependencies


      Apparently, the glib 2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.



      Does anyone know how to fix this issue?



      My /var/log/dist-upgrade/apt.log file is empty:



      cat /var/log/dist-upgrade/apt.log
      cat: /var/log/dist-upgrade/apt.log: No such file or directory


      and the command dpkg --get-selections | grep hold returns nothing:



      $ dpkg --get-selections | grep hold
      $


      EDIT



      This question is not a duplicate. I can't install aptitude even if I wanted to (same error.)










      share|improve this question















      I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.



      However, I got this error:



       corebird depends on libglib2.0-0 (>= 2.41.1); however:
      Package libglib2.0-0:amd64 is not configured yet.
      corebird depends on libgtk-3-0 (>= 3.13.7); however:
      Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.


      So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i for the libglib deb, I got this:



      pkg: error processing package libglib2.0-0:amd64 (--install):
      package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)


      and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.



      This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64.



      So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install. I did that, and now I get this:



      sudo apt-get -f install
      Reading package lists... Done
      Building dependency tree
      Reading state information... Done
      Correcting dependencies... failed.
      The following packages have unmet dependencies:
      corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
      libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
      libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
      libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
      libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
      E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
      E: Unable to correct dependencies


      Apparently, the glib 2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.



      Does anyone know how to fix this issue?



      My /var/log/dist-upgrade/apt.log file is empty:



      cat /var/log/dist-upgrade/apt.log
      cat: /var/log/dist-upgrade/apt.log: No such file or directory


      and the command dpkg --get-selections | grep hold returns nothing:



      $ dpkg --get-selections | grep hold
      $


      EDIT



      This question is not a duplicate. I can't install aptitude even if I wanted to (same error.)







      apt package-management dpkg glib






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 13 '17 at 12:23









      Community

      1




      1










      asked Jun 7 '15 at 22:27









      RPi Awesomeness

      6,421195997




      6,421195997






















          4 Answers
          4






          active

          oldest

          votes

















          up vote
          0
          down vote













          Playing around with the terminal, I randomly came out with a solution, it is as follows :-



          Install Synaptic Package Manager



          sudo apt-get install synaptic


          Now go to the Synaptic package manager through the start or by typing sudo synaptic on the terminal



          Next, search for the package with unmet dependencies.



          Mark the package for complete removal



          Click Apply on the top



          Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.



          Just try it, it should work to the best of my knowledge. In my case, it did work.






          share|improve this answer




























            up vote
            0
            down vote













            I would try to do it like that:



            sudo apt-get remove corebird
            sudo apt-get -f install


            Then make sure that everything is back to normal.



            After that, change repos in /etc/apt/sources.list to vivid and get the needed libraries through apt-get.



            Install corebird with dpkg.



            Change /etc/apt/sources.list back to trusty.






            share|improve this answer






























              up vote
              0
              down vote













              I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:



              sudo snap install corebird





              share|improve this answer




























                up vote
                0
                down vote













                I tried your corebird index



                praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
                Reading package lists... Done
                Building dependency tree
                Reading state information... Done
                Reading state information... Done

                Modern, easy and fun Twitter client
                Twitter client, built using GTK+.
                Do you want to install the software package? [y/N]:y
                Selecting previously unselected package corebird.
                (Reading database ... 273217 files and directories currently installed.)
                Preparing to unpack corebird_1.0-1_amd64.deb ...
                Unpacking corebird (1.0-1) ...
                Setting up corebird (1.0-1) ...
                Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
                Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
                Rebuilding /usr/share/applications/bamf-2.index...
                Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
                Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
                Processing triggers for mime-support (3.60ubuntu1) ...
                Processing triggers for hicolor-icon-theme (0.17-1) ...
                Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
                Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
                Processing triggers for man-db (2.7.6.1-2) ...


                after installed I can open it



                my corebird have been opened



                I think try use gdebi, I hope this helps.






                share|improve this answer























                  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%2f633544%2fe-error-pkgproblemresolverresolve-generated-breaks-this-may-be-caused-by-he%23new-answer', 'question_page');
                  }
                  );

                  Post as a guest















                  Required, but never shown

























                  4 Answers
                  4






                  active

                  oldest

                  votes








                  4 Answers
                  4






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes








                  up vote
                  0
                  down vote













                  Playing around with the terminal, I randomly came out with a solution, it is as follows :-



                  Install Synaptic Package Manager



                  sudo apt-get install synaptic


                  Now go to the Synaptic package manager through the start or by typing sudo synaptic on the terminal



                  Next, search for the package with unmet dependencies.



                  Mark the package for complete removal



                  Click Apply on the top



                  Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.



                  Just try it, it should work to the best of my knowledge. In my case, it did work.






                  share|improve this answer

























                    up vote
                    0
                    down vote













                    Playing around with the terminal, I randomly came out with a solution, it is as follows :-



                    Install Synaptic Package Manager



                    sudo apt-get install synaptic


                    Now go to the Synaptic package manager through the start or by typing sudo synaptic on the terminal



                    Next, search for the package with unmet dependencies.



                    Mark the package for complete removal



                    Click Apply on the top



                    Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.



                    Just try it, it should work to the best of my knowledge. In my case, it did work.






                    share|improve this answer























                      up vote
                      0
                      down vote










                      up vote
                      0
                      down vote









                      Playing around with the terminal, I randomly came out with a solution, it is as follows :-



                      Install Synaptic Package Manager



                      sudo apt-get install synaptic


                      Now go to the Synaptic package manager through the start or by typing sudo synaptic on the terminal



                      Next, search for the package with unmet dependencies.



                      Mark the package for complete removal



                      Click Apply on the top



                      Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.



                      Just try it, it should work to the best of my knowledge. In my case, it did work.






                      share|improve this answer












                      Playing around with the terminal, I randomly came out with a solution, it is as follows :-



                      Install Synaptic Package Manager



                      sudo apt-get install synaptic


                      Now go to the Synaptic package manager through the start or by typing sudo synaptic on the terminal



                      Next, search for the package with unmet dependencies.



                      Mark the package for complete removal



                      Click Apply on the top



                      Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.



                      Just try it, it should work to the best of my knowledge. In my case, it did work.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Nov 19 '16 at 17:22









                      mohitR0_0

                      1167




                      1167
























                          up vote
                          0
                          down vote













                          I would try to do it like that:



                          sudo apt-get remove corebird
                          sudo apt-get -f install


                          Then make sure that everything is back to normal.



                          After that, change repos in /etc/apt/sources.list to vivid and get the needed libraries through apt-get.



                          Install corebird with dpkg.



                          Change /etc/apt/sources.list back to trusty.






                          share|improve this answer



























                            up vote
                            0
                            down vote













                            I would try to do it like that:



                            sudo apt-get remove corebird
                            sudo apt-get -f install


                            Then make sure that everything is back to normal.



                            After that, change repos in /etc/apt/sources.list to vivid and get the needed libraries through apt-get.



                            Install corebird with dpkg.



                            Change /etc/apt/sources.list back to trusty.






                            share|improve this answer

























                              up vote
                              0
                              down vote










                              up vote
                              0
                              down vote









                              I would try to do it like that:



                              sudo apt-get remove corebird
                              sudo apt-get -f install


                              Then make sure that everything is back to normal.



                              After that, change repos in /etc/apt/sources.list to vivid and get the needed libraries through apt-get.



                              Install corebird with dpkg.



                              Change /etc/apt/sources.list back to trusty.






                              share|improve this answer














                              I would try to do it like that:



                              sudo apt-get remove corebird
                              sudo apt-get -f install


                              Then make sure that everything is back to normal.



                              After that, change repos in /etc/apt/sources.list to vivid and get the needed libraries through apt-get.



                              Install corebird with dpkg.



                              Change /etc/apt/sources.list back to trusty.







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited Dec 22 '16 at 12:17









                              d a i s y

                              3,23982244




                              3,23982244










                              answered Jun 9 '15 at 19:55









                              Velkan

                              2,1901824




                              2,1901824






















                                  up vote
                                  0
                                  down vote













                                  I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:



                                  sudo snap install corebird





                                  share|improve this answer

























                                    up vote
                                    0
                                    down vote













                                    I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:



                                    sudo snap install corebird





                                    share|improve this answer























                                      up vote
                                      0
                                      down vote










                                      up vote
                                      0
                                      down vote









                                      I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:



                                      sudo snap install corebird





                                      share|improve this answer












                                      I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:



                                      sudo snap install corebird






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Apr 25 at 1:33









                                      dpb

                                      5,05411648




                                      5,05411648






















                                          up vote
                                          0
                                          down vote













                                          I tried your corebird index



                                          praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
                                          Reading package lists... Done
                                          Building dependency tree
                                          Reading state information... Done
                                          Reading state information... Done

                                          Modern, easy and fun Twitter client
                                          Twitter client, built using GTK+.
                                          Do you want to install the software package? [y/N]:y
                                          Selecting previously unselected package corebird.
                                          (Reading database ... 273217 files and directories currently installed.)
                                          Preparing to unpack corebird_1.0-1_amd64.deb ...
                                          Unpacking corebird (1.0-1) ...
                                          Setting up corebird (1.0-1) ...
                                          Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
                                          Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
                                          Rebuilding /usr/share/applications/bamf-2.index...
                                          Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
                                          Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
                                          Processing triggers for mime-support (3.60ubuntu1) ...
                                          Processing triggers for hicolor-icon-theme (0.17-1) ...
                                          Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
                                          Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
                                          Processing triggers for man-db (2.7.6.1-2) ...


                                          after installed I can open it



                                          my corebird have been opened



                                          I think try use gdebi, I hope this helps.






                                          share|improve this answer



























                                            up vote
                                            0
                                            down vote













                                            I tried your corebird index



                                            praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
                                            Reading package lists... Done
                                            Building dependency tree
                                            Reading state information... Done
                                            Reading state information... Done

                                            Modern, easy and fun Twitter client
                                            Twitter client, built using GTK+.
                                            Do you want to install the software package? [y/N]:y
                                            Selecting previously unselected package corebird.
                                            (Reading database ... 273217 files and directories currently installed.)
                                            Preparing to unpack corebird_1.0-1_amd64.deb ...
                                            Unpacking corebird (1.0-1) ...
                                            Setting up corebird (1.0-1) ...
                                            Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
                                            Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
                                            Rebuilding /usr/share/applications/bamf-2.index...
                                            Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
                                            Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
                                            Processing triggers for mime-support (3.60ubuntu1) ...
                                            Processing triggers for hicolor-icon-theme (0.17-1) ...
                                            Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
                                            Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
                                            Processing triggers for man-db (2.7.6.1-2) ...


                                            after installed I can open it



                                            my corebird have been opened



                                            I think try use gdebi, I hope this helps.






                                            share|improve this answer

























                                              up vote
                                              0
                                              down vote










                                              up vote
                                              0
                                              down vote









                                              I tried your corebird index



                                              praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
                                              Reading package lists... Done
                                              Building dependency tree
                                              Reading state information... Done
                                              Reading state information... Done

                                              Modern, easy and fun Twitter client
                                              Twitter client, built using GTK+.
                                              Do you want to install the software package? [y/N]:y
                                              Selecting previously unselected package corebird.
                                              (Reading database ... 273217 files and directories currently installed.)
                                              Preparing to unpack corebird_1.0-1_amd64.deb ...
                                              Unpacking corebird (1.0-1) ...
                                              Setting up corebird (1.0-1) ...
                                              Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
                                              Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
                                              Rebuilding /usr/share/applications/bamf-2.index...
                                              Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
                                              Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
                                              Processing triggers for mime-support (3.60ubuntu1) ...
                                              Processing triggers for hicolor-icon-theme (0.17-1) ...
                                              Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
                                              Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
                                              Processing triggers for man-db (2.7.6.1-2) ...


                                              after installed I can open it



                                              my corebird have been opened



                                              I think try use gdebi, I hope this helps.






                                              share|improve this answer














                                              I tried your corebird index



                                              praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
                                              Reading package lists... Done
                                              Building dependency tree
                                              Reading state information... Done
                                              Reading state information... Done

                                              Modern, easy and fun Twitter client
                                              Twitter client, built using GTK+.
                                              Do you want to install the software package? [y/N]:y
                                              Selecting previously unselected package corebird.
                                              (Reading database ... 273217 files and directories currently installed.)
                                              Preparing to unpack corebird_1.0-1_amd64.deb ...
                                              Unpacking corebird (1.0-1) ...
                                              Setting up corebird (1.0-1) ...
                                              Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
                                              Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
                                              Rebuilding /usr/share/applications/bamf-2.index...
                                              Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
                                              Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
                                              Processing triggers for mime-support (3.60ubuntu1) ...
                                              Processing triggers for hicolor-icon-theme (0.17-1) ...
                                              Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
                                              Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
                                              Processing triggers for man-db (2.7.6.1-2) ...


                                              after installed I can open it



                                              my corebird have been opened



                                              I think try use gdebi, I hope this helps.







                                              share|improve this answer














                                              share|improve this answer



                                              share|improve this answer








                                              edited Aug 6 at 11:33









                                              anonymous2

                                              3,23341846




                                              3,23341846










                                              answered Aug 6 at 11:14









                                              abu-ahmed al-khatiri

                                              87315




                                              87315






























                                                  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%2f633544%2fe-error-pkgproblemresolverresolve-generated-breaks-this-may-be-caused-by-he%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

                                                  Quarter-circle Tiles

                                                  build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

                                                  Mont Emei