Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rpm 包显示失败的依赖项,即使它存在于 /usr/lib 中(顺便说一下,库是 IUP)这是错误错误:失败的依赖项:<package-name> 需要 libiup.so
听起来库是在没有 RPM 的情况下安装的(例如手册make install)。这可以通过询问数据库来验证rpm -q --whatprovides /usr/lib/libyourlibname.so。如果它告诉您没有任何东西可以提供它,那么这就是它失败的原因。
make install
rpm -q --whatprovides /usr/lib/libyourlibname.so
解决方法是--nodeps在 RPM 命令行上执行“”。除非您确定它是正确的文件,否则不建议这样做。
--nodeps