If you already installed the package with missed dependencies, you can dowload and install dependencies automatically with sudo apt-get -f install Also available is a graphical version gdebi-gtk, linked to.deb nautilus right click action 'Open With GDebi Package Installer'. We are going to install Smash repo, select Install from zip file. (If you just installed Kodi you’ll be prompted to allow unknown sources and enable notifications, activate those options by clicking on the Settings button before continuing) 8. To get all these features you have to install this Trakt tv on your kodi to syncing the content of the multiple devices by using the multiple addons. Here we are providing the simple steps to trakt.tv/activate. Trakt Failed To Install A Dependency.
This question already has an answer here:
- How to let `dpkg -i` install dependencies for me? 10 answers
I'm trying to install MySQL Workbench on my Ubuntu box (11.04). The website has a Ubuntu .deb available for download (for 10.10 and 10.04 so I chose 10.10).
However,
yields:
My question is, is there a way to tell dpkg to automatically fetch missing dependencies, or do I need to manually apt-get install
missing packages like libctemplate0 and libpython2.6?
Genesis Reborn Failed To Install A Dependency
(Or alternatively, is there some other way to get MySQL Workbench easily up & running?)
terdon♦marked as duplicate by Pilot6, Eric Carvalho, user364819, mikewhatever, 2707974Oct 30 '15 at 13:24
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.
7 Answers
You can install a package and get dependencies from repositories with
If you already installed the package with missed dependencies, you can dowload and install dependencies automatically with
Also available is a graphical version gdebi-gtk
, linked to .deb
nautilus right click action 'Open With GDebi Package Installer'.
dpkg
itself is not capable of managing repositories. A higher-level tool like apt-get
is required to fetch anything from repositories. dkpg
is only the core tool that installs/removes/configures packages, taking care of dependencies and other factors. apt-get
and aptitude
are tools that manage repositories, download data from them, and usedkpg
to install/remove packages from them. This means that apt-get
and aptitude
can resolve dependencies and get required packages from repository, but dpkg
cannot, because it knows nothing about repositories.
From the 1.1 branch onwards, apt-get
supports installing local packages along with dependencies in the way of:
Trakt Failed To Install A Dependency And Indemnity
BraiamYou can use apt-get -f install
to install all the packages dpkg -i
complains about (but looking at your question you probably knew that ;) ).
gdebi
might be a better alternative.
On a 3rd note... gdebi
was replaced by the Ubuntu Software Center. If you install the .deb from within GDM (nautilus) USC will take over and try to install the deb
. And that includes the dependencies. That is if you are not bound to command line ;)
That particular library(libctemplate0
) I downloaded it from
The direct link http://ubuntu.wikimedia.org/ubuntu//pool/universe/c/ctemplate/libctemplate0_0.96-0ubuntu1_amd64.deb
The mySQL-workbench installation went smoothly after that.
Right click on the package file and select 'open with Ubuntu software center', It will install everything for you.
Eliah KaganAFAIK, dpkg
provides no mechanism for dependency resolving. It checks/warns for dependencies, but does not do any further action. You'll have to solve the problems on your own.
As the Debian wiki states here:
dpkg checks dependencies and will refuse to install a package whose dependencies aren't met, but it won't help you find and install those dependencies. You need a higher-level tool (eg dselect or apt-get) for that.
Trakt Failed To Install A Dependency
So I think that you'll have to use apt-get
or aptitude
in order to install the package you're interested in, as well as any dependencies involved.
Since this package is not in the 11.04 repositories, just run:
Covenant Failed To Install A Dependency
and you should be ok.