We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 048c80c commit 34c76a6Copy full SHA for 34c76a6
perfkitbenchmarker/linux_virtual_machine.py
@@ -2917,6 +2917,13 @@ class CentOsStream9Mixin(BaseRedHatMixin):
2917
2918
OS_TYPE = os_types.CENTOS_STREAM9
2919
2920
+ def PrepareVMEnvironment(self):
2921
+ super().PrepareVMEnvironment()
2922
+ self.Install('python')
2923
+ self.RemoteCommand(
2924
+ 'sudo rm /usr/bin/python3; '
2925
+ 'sudo ln -s /usr/bin/python3.12 /usr/bin/python3')
2926
+
2927
def SetupPackageManager(self):
2928
"""Install EPEL."""
2929
# https://docs.fedoraproject.org/en-US/epel/#_centos_stream_9
0 commit comments