• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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