Click to See Complete Forum and Search --> : RPM needs RPM which needed that RPM!


rocketpcguy
05-07-2004, 02:28 PM
[root@localhost Apps]# rpm -ivh gnome-python-2.0.0-3mdk.i586.rpm
error: Failed dependencies:
gnome-python-bonobo is needed by gnome-python-2.0.0-3mdk
[root@localhost Apps]# rpm -ivh gnome-python-bonobo-2.0.0-3mdk.i586.rpm
error: Failed dependencies:
gnome-python-canvas = 2.0.0-3mdk is needed by gnome-python-bonobo-2.0.0-3mdk
[root@localhost Apps]# rpm -ivh gnome-python-canvas-2.0.0-3mdk.i586.rpm
error: Failed dependencies:
gnome-python = 2.0.0-3mdk is needed by gnome-python-canvas-2.0.0-3mdk
[root@localhost Apps]# rpm -ivh gnome-python-2.0.0-3mdk.i586.rpm
error: Failed dependencies:
gnome-python-bonobo is needed by gnome-python-2.0.0-3mdk
[root@localhost Apps]# rpm -ivh gnome-python-bonobo-2.0.0-3mdk.i586.rpm
error: Failed dependencies:
gnome-python-canvas = 2.0.0-3mdk is needed by gnome-python-bonobo-2.0.0-3mdk
[root@localhost Apps]# rpm -ivh gnome-python-canvas-2.0.0-3mdk.i586.rpm
error: Failed dependencies:
gnome-python = 2.0.0-3mdk is needed by gnome-python-canvas-2.0.0-3mdk

AAAAAAAAAAAAAAHHHHHHHHHHHHHHHH!!!!!!!!!!!!!!!!!!!

what do i do???

happybunny
05-07-2004, 02:34 PM
rpm -ivh *.rpm

i think this will install them all at once realizing their dependancies..

also, what distro?

mdwatts
05-07-2004, 02:52 PM
Must be Mandrake, so use urpmi instead of rpm.

klugee
05-07-2004, 03:13 PM
Yea, use urpmi. You will need to set it up first, which isn't hard. Just go to: http://urpmi.org/easyurpmi/index.php
and follow directions.

Then you can install with: urpmi gnome-python

-klugee-

blobaugh
05-07-2004, 03:21 PM
If you use *.rpm it will install ALL the rpms in that directory. I don't think thats what you intend to do. Actually all you need to do is put them all on the same line. eg

rpm -ihv rpm1.rpm rpm2.rpm rpm3.rpm

and so on

mdwatts
05-07-2004, 04:12 PM
Originally posted by blobaugh
I. Actually all you need to do is put them all on the same line. eg

rpm -ihv rpm1.rpm rpm2.rpm rpm3.rpm


That is of course one way though configuring and using 'urpmi' should take care of all the dependencies without the need to type out all the rpm package names on one line. At least that is what I've read here at JL as I've never used Mandrake or 'urpmi' myself.

You could also move all the gnome-python rpm packages to a directory of their own and use 'rpm -ivh *.rpm' which then should install in the correct order for the dependencies.

I would say setup and configure 'urmpi' now as it will likely come in handy down the road. :)

blobaugh
05-10-2004, 12:21 AM
You wouldn't neccessarily have to type in the entire filename. Just enough so you can use the tab key function. But if urpmi is easier to use go for it.