python 3.7 uninstall from amazon-linux2

0

I wanted to remove the python 3.7 version from my amazon-Linux completely and reinstall the python 3.9 version with yum commands

2 Answers
0
# Remove Python 3.7
sudo yum remove python3 -y

# Enable Amazon Linux Extras repository for Python 3.9
sudo amazon-linux-extras enable python3.9

# Clean the yum metadata cache
sudo yum clean metadata

# Install Python 3.9
sudo yum install python3.9 -y

# Check the installed Python version
python3 --version

profile picture
EXPERT
answered a year ago
profile pictureAWS
EXPERT
reviewed a year ago
  • Hi Sedat, I am experiencing "The operation would result in removing the following protected packages: dnf" with remove command. Adding --skip-broken option does not help either. Any workaround for that?

0

I am experiencing an execution error on Amazon EC2 using Linux 2 AMI

sudo amazon-linux-extras enable python3.9

Error

AWS
Krishna
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions