2 Answers
- Newest
- Most votes
- Most comments
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
0
I am experiencing an execution error on Amazon EC2 using Linux 2 AMI
sudo amazon-linux-extras enable python3.9
answered a year ago
Relevant content
- Accepted Answerasked a year ago
- asked 3 years ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated 3 years 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?