Aggiunta di repository pacchetti
Python 3 non è installato per impostazione predefinita in CentOS 7. Python 3 non è disponibile anche nel repository di pacchetti ufficiali di CentOS 7. Ma possiamo aggiungere Stabile in linea a monte (Ius) Repository dei pacchetti su CentOS 7 per installare Python 3.
Prima aggiornamento il Yum Pacchetto Repository Cache della macchina CentOS 7 con il seguente comando:
$ sudo yum makecache
IL Yum La cache del repository dei pacchetti deve essere aggiornata.
Ora installa yum-otils pacchetto con il seguente comando:
$ sudo yum installa yum-otils
Ora premi y e poi premere continuare.
yum-otils dovrebbe essere installato.
Ora aggiungi il Ius Repository dei pacchetti con il seguente comando:
$ sudo yum installa https: // centos7.iuscommunity.org/ius-release.RPM
Ora premi y e poi premere continuare.
Ius Il repository dei pacchetti deve essere aggiunto.
Ora aggiorna il Yum PACCHE PACKE Repository Cache di nuovo con il seguente comando:
$ sudo yum makecache
IL Yum La cache del repository dei pacchetti deve essere aggiornata.
Ora sei pronto per installare Python 3.X.
Installazione di Python 3.4 e PIP per Python 3.4:
Se vuoi installare solo Python 3.4, non PIP per Python 3.4, eseguire il seguente comando:
$ sudo yum installa python34uPremere y e poi premere continuare.
Potrebbe essere chiesto di accettare il tasto GPG, premere y e poi premere continuare.
Python 3.4 dovrebbe essere installato.
Se vuoi installare Python 3.4 e PIP per Python 3.4, eseguire il seguente comando:
$ sudo yum installa python34u python34u-pipOra premi y e poi premere continuare.
Ora premi y e poi premere continuare.
Python 3.4 e PIP per Python 3.4 dovrebbe essere installato.
Ora puoi controllare se Python 3.4 è installato correttamente con il seguente comando:
$ Python3.4 -vCome puoi vedere, è installato e funzionante correttamente.
Puoi anche verificare se PIP per Python 3.4 è installato correttamente con il seguente comando:
$ pip3.4 -vCome puoi vedere, funziona.
Installazione di Python 3.5 e PIP per Python 3.5
Puoi installare solo Python 3.5 e lasciare PIP per Python 3.5 con il seguente comando:
$ sudo yum installa python35uOra segui i passaggi del Installazione di Python 3.4 e PIP per Python 3.4 sezione dell'articolo sopra. Python 3.5 dovrebbe essere installato.
Python 3.5 incluso PIP per Python 3.5:
Se vuoi installare Python 3.5 e PIP per Python 3.5, eseguire il seguente comando:
$ sudo yum installa python35u python35u-pipOra segui i passaggi del Installazione di Python 3.4 e PIP per Python 3.4 sezione dell'articolo sopra. Python 3.5 dovrebbe essere installato insieme a PIP per Python 3.5.
Per testare se Python 3.5 opere, eseguire il seguente comando:
$ Python3.5 -vPer testare se PIP per Python 3.5 opere, eseguire il seguente comando:
$ pip3.5 -vInstallazione di Python 3.6 e PIP per Python 3.6
Puoi installare solo Python 3.6 e lasciare PIP per Python 3.6 con il seguente comando:
$ sudo yum installa python36uOra segui i passaggi del Installazione di Python 3.4 e PIP per Python 3.4 sezione dell'articolo sopra. Python 3.6 dovrebbe essere installato.
Se vuoi installare Python 3.6 e PIP per Python 3.6, eseguire il seguente comando:
$ sudo yum installa python36u python36u-pipOra segui i passaggi del Installazione di Python 3.4 e PIP per Python 3.4 sezione dell'articolo sopra. Python 3.6 deve essere installato insieme a PIP per Python 3.6.
Per testare se Python 3.6 opere, eseguire il seguente comando:
$ Python3.6 -VPer testare se PIP per Python 3.6 opere, eseguire il seguente comando:
$ pip3.6 -VCambiare la versione di Python al volo
Puoi accedere a Python 3 usando Python3 comando.
La versione predefinita di Python 3.x usato per Python3 Il comando è Python 3.4.X.
Se hai più versione di Python 3, puoi cambiarla come segue:
$ alias python3 = $ (che python3.XNota: qui X = 4, 5, O 6 per Python 3.4, Python 3.5, E Python 3.6 rispettivamente.
Ora Python3 è destinato a utilizzare Python 3.6.x Come puoi vedere dallo screenshot qui sotto.
$ python3 -vÈ così che installi Python 3 su CentOS 7. Grazie per aver letto questo articolo.