Home Hardware Networking Programmazione Software Domanda Sistemi
Conoscenza del computer >> Programmazione >> Python Programming >> .

Come installare Python su Ubuntu

Per installare Python in Ubuntu, attenersi alla seguente procedura:

1. Aprire una finestra di terminale.

2. Aggiorna l'indice del pacchetto:

```

sudo apt-get update

```

3. Installa Python 3:

```

sudo apt-get install python3

```

4. Verifica l'installazione digitando:

```

python3 --version

```

Dovresti vedere un output simile a:

```

Python 3.x.x

```

5. Per impostare Python 3 come interprete Python predefinito, esegui il comando seguente:

```

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1

```

6. Per verificare che Python 3 sia ora l'impostazione predefinita, digitare:

```

python --versione

```

Dovresti vedere lo stesso output del passaggio 4.

Congratulazioni, hai installato con successo Python 3 su Ubuntu!

 

Programmazione © www.354353.com