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 Respostas
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
ESPECIALISTA
respondido há um ano
profile pictureAWS
ESPECIALISTA
avaliado há um ano
  • 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
respondido há um ano

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas