I am trying to isntall something using "yum install my.rpm"

The problem is I am getting

TypeError: an integer is required
error: python callback <bound method RPMTransaction.callback of <yum.rpmtrans.RPMTransaction instance at 0x013e3f8>> failed, aborting!

What does this mean? I turned on verbosity of the yum install, cant figure anything out. This is RHEL 6.1

Thanks

link|improve this question

69% accept rate
Can you post the spec file you used? – Kevin VW Jan 25 at 20:31
I can't post the spec file - were you looking for anything in particular in it? – Derek Jan 25 at 21:45
What happens when you run "rpm -Uvh my.rpm"? Also, what is the output of "rpm -qp --scripts my.rpm" and of "rpm -qip my.rpm"? – Kevin VW Jan 25 at 22:59
Were you able to resolve this? I am having the same problem today. – Aaron Copley Mar 23 at 15:11
I solved it (for me.) I was installing the package using sudo from a root-squash mounted NFS home directory... I moved it to /tmp and installed it just fine. YMMV – Aaron Copley Mar 23 at 19:46
feedback

1 Answer

To install a rpm file with yum, you need to use the localinstall command:

localinstall Is used to install a set of local rpm files. If required the enabled repositories will be used to resolve dependencies. Note that the install command will do a local install, if given a filename.

For example "yum localinstall my.rpm". But I think you also have a problem with your spec file.

link|improve this answer
it says as your last sentence that the install command does a local install if given a file name – Derek Jan 25 at 21:45
feedback

Your Answer

 
or
required, but never shown

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