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 Risposte
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
ESPERTO
con risposta un anno fa
profile pictureAWS
ESPERTO
verificato un anno fa
  • 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
con risposta un anno fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande