• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Resolved Failed to check system configuration - Yum utility finished with errors. Installation may fail

The issue is likely caused by that Python version. Instead, create a symbolic link to the 2.x version that should also be on your system.

1) Ensure that Python 2.7.5 is installed
Code:
# rpm -q python-2.7.5
python-2.7.5-90.el7.x86_64
2) Proceed only if python 2.7 is found in step (1). Change the symlink from python3 to python 2.7.
Code:
# mv /bin/python{,.orig}; ln -s /bin/python2.7 /usr/bin/python
3) Retry yum as you did before.
 
Back
Top