我一直在尝试在我的centos虚拟机上安装condor,但一直收到以下错误:
--> Finished Dependency Resolution
Error: Package: condor-classads-8.5.5-1.el6.x86_64 (htcondor-development)
Requires: libpcre.so.0()(64bit)
Error: Package: condor-8.5.5-1.el6.x86_64 (htcondor-development)
Requires: ecryptfs-utils
Error: Package: condor-8.5.5-1.el6.x86_64 (htcondor-development)
Requires: libpcre.so.0()(64bit)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest我在网上看了看,尝试了所有的建议,但都没有奏效。我做了下一件合乎逻辑的事情,并试图安装这些包,但执行yum install ecryptfs-utils得到了“无事可做”的消息。和libpcre.so.0()一样,我是Linux的初学者,所以我不知道我在这里做错了什么。感谢你的帮助。
发布于 2017-02-09 23:41:59
我遇到了同样的问题,这是因为yum试图安装不同版本的condor。我运行的是centos 6.6,但yum正在尝试安装centos 7 (rhel 7)版本。这样做的原因是,我最初错误地下载并设置了condor的rhel7存储库详细信息,结果被缓存。
解决方案是清除yum缓存(yum clean all),为您的CentOS版本/arch下载正确的condor repo (使用rpm -q centos-release查找),然后安装(yum install condor-all)。
发布于 2016-11-12 02:29:40
从official location获取condor。它拥有所需的所有二进制文件。
https://stackoverflow.com/questions/37845511
复制相似问题