“Ubuntu elimina a Python 2.7” Código de respuesta

Ubuntu elimina a Python 2.7

# Remove python2
sudo apt purge -y python2.7-minimal

# You already have Python3 but 
# don't care about the version 
sudo ln -s /usr/bin/python3 /usr/bin/python

# Same for pip
sudo apt install -y python3-pip
sudo ln -s /usr/bin/pip3 /usr/bin/pip

# Confirm the new version of Python: 3
python --version
Real Raccoon

Cómo desinstalar Python2.7 de Ubuntu 18.04

whereis python
which python
Calm Cobra

Respuestas similares a “Ubuntu elimina a Python 2.7”

Preguntas similares a “Ubuntu elimina a Python 2.7”

Más respuestas relacionadas con “Ubuntu elimina a Python 2.7” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código