Force install apt-get

274,637

Solution 1

First download the deb package from repository

apt-get download <package_name>

Install the deb file ( it should be in current folder )

sudo dpkg -i <downloaded_package_deb_file>

Solution 2

Try

sudo apt-get install -f

with no package in terminal.

If this still gives the error of the dependencies then you will have to issue

sudo apt-get remove beanstalkd

then try

sudo apt-get install mysql-server beanstalkd

That should install the mysql dependencies and beanstalk.

Solution 3

try running sudo apt-get --fix-missing install

Solution 4

Run

apt --fix-broken install

with no packages. And the try to install the packages again.

Share:
274,637

Related videos on Youtube

abhishek77in
Author by

abhishek77in

Updated on September 18, 2022

Comments

  • abhishek77in
    abhishek77in over 1 year

    I tried installing beanstalkd with sudo apt-get install beanstalkd (also with -f option) and I get the following error:

    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    You might want to run `apt-get -f install' to correct these:
    The following packages have unmet dependencies:
      beanstalkd: Depends: libevent-1.4-2 (>= 1.4.13-stable) but it is not going to be installed
      mysql-server-5.1: Depends: mysql-client-5.1 (>= 5.1.62-0ubuntu0.10.04.1) but it is not going to be installed
                        Depends: libmysqlclient16 (>= 5.1.21-1) but it is not going to be installed
                        Depends: mysql-server-core-5.1 (>= 5.1.62-0ubuntu0.10.04.1) but it is not going to be installed
                        PreDepends: mysql-common (>= 5.1.62-0ubuntu0.10.04.1) but it is not going to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    
    • Admin
      Admin almost 12 years
      open synaptic and then look for those required things then install them from there .
    • Admin
      Admin almost 12 years
    • Admin
      Admin almost 12 years
      Did you do 'apt-get -f install' separately first, and then try to install beanstalkd?
    • Admin
      Admin almost 12 years
      @WebDeveloper he has given the commands to open them , what Ubuntu you got (server/GUI)?
    • Admin
      Admin almost 12 years
      i have a 10.04 server
  • Ads20000
    Ads20000 over 10 years
    Why was this downvoted? This has fixed my problem with installing fake-pae ( launchpad.net/~prof7bit/+archive/fake-pae ) after I had upgraded to Ubuntu 12.10. Thank you so much!
  • Mat Schaffer
    Mat Schaffer almost 9 years
    thanks so much for this answer. At least by doing this I can now see the the version conflicts that are causing the new package to get ignored (libstdc++6 dep in new package is newer)
  • PythoNic
    PythoNic about 8 years
    aptitude download <package_name> also works
  • Alexis Wilke
    Alexis Wilke almost 8 years
    @Ads20000, it may have been downvoted because just -i won't resolve any dependency problems. However, if ineicu had shown the --force-depends trick, maybe the downvote would not have happened: sudo dpkg --force-depends -i <name.deb> will install a package even if a dependency is considered missing.
  • jozxyqk
    jozxyqk over 2 years
    apt-get download completes but does not create any files in the current directory for me