• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Resolved Plesk Update failed 18.0.40

nisamudeen97

Regular Pleskian
Hi,

I am getting the below error message while trying to update plesk from 18.0.40 to 18.0.41.

Installation started in background
File "/usr/local/psa/bin/yum_install", line 33
print msg
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(msg)?
Error: The Yum utility failed to install the required packages.
Attention! Your software might be inoperable.
Visit https://support.plesk.com/ to search for a solution.
 
Hi,

In my case there is no errors on mysql repo's in the system and we are not using Mariadb repo as well. It says error on below

File "/usr/local/psa/bin/yum_install", line 33
print msg
^
 
Plesk is designed to operate under Python 2.7, but looks like python 3+ is in use:

Code:
# python --version
Python 3.6.9

# ls -al /usr/bin/python
lrwxrwxrwx 1 root root 9 Sep 11 19:32 /usr/bin/python -> python3.6

Replace the Python symlink with 2.7 binary:

1. Run the following command:
Code:
# ln -snfT python2.7 /usr/bin/python
2. Confirm the change:
Code:
# python -V
Python 2.7.17
 
Back
Top