“Linux establece Python 3 como predeterminado” Código de respuesta

Linux establece Python 3 como predeterminado

1. Check current version:
$ python --version
2. get root permissions:
$ sudo su
3. set python3 as default:
$ update-alternatives --install /usr/bin/python python /usr/bin/python3 1
4. Done. (Check by $ python --version)
The Biton

Establezca Python 3 como Ubuntu predeterminado

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.4 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
Sjk-Lacoste

Respuestas similares a “Linux establece Python 3 como predeterminado”

Preguntas similares a “Linux establece Python 3 como predeterminado”

Más respuestas relacionadas con “Linux establece Python 3 como predeterminado” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código