Error: Package: libselinux-devel-2.5-15.el7.x86_64 (/libselinux-devel-2.5-15.el7.x86_64) Requires: libselinux(x86-64) = 2.5-15.el7 Installed: libselinux-2.5-14.1.el7.x86_64 (@anaconda/7.6) libselinux(x86-64) = 2.5-14.1.el7 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest
时间: 2024-03-16 22:42:34 浏览: 66
It seems that you are encountering a dependency issue with the libselinux-devel package on your system. The error message indicates that the installed version of libselinux does not match the required version for the libselinux-devel package.
One possible solution is to update the libselinux package to the required version using the package manager for your operating system. For example, if you are using yum on CentOS 7, you can try running the following command:
```
sudo yum update libselinux
```
If this does not work, you could try using the `--skip-broken` option when installing the libselinux-devel package. This will skip any packages with unresolved dependencies, but may not be a recommended solution in all cases.
阅读全文