1. Trakt Failed To Install A Dependency
  2. Exodus Failed To Install A Dependency
  3. Placenta Failed To Install A Dependency
  4. Trakt Failed To Install A Dependency Ratio
  5. Trakt Failed To Install A Dependency Injection

Neptune Rising Kodi addon is a popular fork of Covenant. Learn how to install Neptune Rising Kodi addon on krypton 17.6, jarvis, firestick, real debrid, trakt and access the best quality streams for movies and TV shows. Neptune Rising addon is available in Blamo Repo which has a new URL. Use one of the guides below to install the fantastic Trakt add-on for Kodi Jarvis or Krypton. First guide is for Jarvis and below devices; second for Krypton and above devices. There is also a guide for setting up Trakt in Covenant and Salts further down.

Join GitHub today

GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.

Sign up New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comments

commented Apr 27, 2017

When I try to install the script, I keep getting this message, 'Dependency failed to install.' I'm using Kodi 17.1

commented Apr 27, 2017

Are you using a proper kodi version? As in from www.kodi.tv ?

Placenta failed to install a dependency

commented Apr 27, 2017

Yes, yes I am. Straight out of the box too, no builds.

commented Apr 27, 2017

Any third party repos?
Logfile might help to find the problem

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
Active2 years, 3 months ago

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?

(Or alternatively, is there some other way to get MySQL Workbench easily up & running?)

terdon
73.5k14 gold badges150 silver badges234 bronze badges
JonikJonik
3,99811 gold badges30 silver badges43 bronze badges

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'.

enzotibenzotib
69k9 gold badges140 silver badges159 bronze badges

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.

Rafał CieślakRafał Cieślak
15.1k6 gold badges50 silver badges86 bronze badges

From the 1.1 branch onwards, apt-get supports installing local packages along with dependencies in the way of:

BraiamBraiam
54.1k21 gold badges144 silver badges230 bronze badges

You 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 ;)

Braiam
54.1k21 gold badges144 silver badges230 bronze badges
RinzwindRinzwind
222k29 gold badges428 silver badges570 bronze badges

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.

mv288mv288

Right click on the package file and select 'open with Ubuntu software center', It will install everything for you.

Eliah Kagan

Trakt Failed To Install A Dependency

90.3k23 gold badges250 silver badges395 bronze badges
user118263user118263

AFAIK, 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.

Exodus Failed To Install A Dependency

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.

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.

Placenta Failed To Install A Dependency

Since this package is not in the 11.04 repositories, just run:

and you should be ok.

Trakt Failed To Install A Dependency Ratio

Pavlos G.

Trakt Failed To Install A Dependency Injection

Pavlos G.
7,6361 gold badge28 silver badges33 bronze badges

Not the answer you're looking for? Browse other questions tagged software-installationdpkgdependencies or ask your own question.