Summary of solving the yum error problem after upgrading Python to 3.6.6 on CentOS 7

Summary of solving the yum error problem after upgrading Python to 3.6.6 on CentOS 7

I recently upgraded a test server operating system to Cent0S 7.5, and also upgraded Python from 2.7.5 to Python 3.6.6. After the upgrade, I found that an exception occurred when yum installed related packages, reporting an error such as "File "/usr/libexec/urlgrabber-ext-down", line 28". The specific error information is as follows:

# yum install openssl
..........................
Total download size: 1.7 M
Is this ok [y/d/N]: y
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
File "/usr/libexec/urlgrabber-ext-down", line 28
except OSError, e:
^
SyntaxError: invalid syntax
File "/usr/libexec/urlgrabber-ext-down", line 28
except OSError, e:
^
SyntaxError: invalid syntax

After testing and verification, this problem can be solved by the following method:

Modify the Python version information in /usr/libexec/urlgrabber-ext-down

vi /usr/libexec/urlgrabber-ext-down changes /usr/bin/python to /usr/bin/python2.7 .

Summarize

The above is a summary of how to solve the yum error problem after upgrading Python to 3.6.6 on CentOS 7. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Fix the problem that yum cannot be used correctly after upgrading Python to version 3.6 on CentOS7
  • Solution to uninstalling Python and yum in CentOs system
  • The perfect solution to the failure of installing python-pip using yum under CentOS

<<:  The perfect solution for MYSQL5.7.24 installation without data directory and my-default.ini and service failure to start

>>:  How to query a record in Mysql in which page of paging

Recommend

MySQL 8.0.18 installation and configuration graphic tutorial

Learning objectives: Learn to use Windows system ...

Vue uses filters to format dates

This article example shares the specific code of ...

Native js to implement 2048 game

2048 mini game, for your reference, the specific ...

Teach you how to implement the observer mode in Javascript

Table of contents What is the Observer Pattern? S...

The grid is your layout plan for the page

<br /> English original: http://desktoppub.a...

Detailed steps to implement the Excel import function in Vue

1. Front-end-led implementation steps The first s...

Implementation of element shuttle frame performance optimization

Table of contents background Solution New Questio...

Vue implements video upload function

This article example shares the specific code of ...

Implementation example of video player based on Vue

When the existing video player cannot meet the ne...

CSS syntax for table borders

<br /> CSS syntax for table borders The spec...

Superficial Web Design

<br />I have always believed that Yahoo'...

Issues with Rancher deployment and importing K8S clusters

Rancher deployment can have three architectures: ...

How to change the MySQL database directory location under Linux (CentOS) system

How to change the MySQL database directory locati...

A brief discussion on the optimization of MySQL paging for billions of data

Table of contents background analyze Data simulat...