GNU/Linux >> Linux Esercitazione >  >> Ubuntu

Come aggiornare Python da 3.4.3 a 3.5??

Questa domanda ha già una risposta qui :Come aggiornare Python di Ubuntu con l'ultima versione dal sorgente? [duplicato]

(1 risposta)
Chiuso 5 anni fa.

Sto anche usando Jupyter e Anaconda, li interromperà/eliminerà o qualsiasi modulo Python?

Risposta accettata:

Puoi provare a utilizzare questo PPA per sostituire il tuo attuale Python con 3.5:

https://launchpad.net/~fkrull/+archive/ubuntu/deadsnakes

Le istruzioni per l'uso sono disponibili nella pagina Web collegata.

Tuttavia, consiglierei di installare python 3.5 parallelamente a 3.4 (sotto /opt per esempio).

Per questo dovresti installare dal sorgente:

wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tar.xz
tar xfvJ Python-3.5.1.tar.xz
cd Python-3.5.1
./configure --prefix=/opt/python3.5
make
# To make idle3.5, you need tk's development to produce tkinter
sudo apt-get install tk8.6-dev
sudo make install

Il tuo interprete Python 3.5 si troverà in /opt/python3.5/bin/python3.5 .
Il tuo ambiente di sviluppo integrato si trova anche in /opt/python3.5/bin/idle3.5 .

Per facilitare l'uso puoi collegare simbolicamente questi file a una posizione sul tuo $PATH così:

sudo ln -s /opt/python3.5/bin/python3.5 /usr/local/bin/py3.5
sudo ln -s /opt/python3.5/bin/idle3.5 /usr/local/bin/idle3.5

Dopodiché, digita semplicemente py3.5 dalla riga di comando utilizzerà python 3.5, mentre allo stesso tempo python 3.4 rimarrà intatto e non causerà alcuna "rottura" sul tuo sistema. Inoltre, idle3.5 farà apparire l'
editor IDLE con la shell python 3.5.1.


Ubuntu
  1. Come aggiornare Raspberry Pi

  2. Come installare NumPy

  3. Come eseguire l'aggiornamento a Ubuntu 15.10 da Ubuntu 15.04

  4. Come installare Python 3.9 su Ubuntu 18.04

  5. Come aggiornare a Python 2.7?

Come aggiornare da Ubuntu 16.10 a Ubuntu 17.04

Come installare Python 3.11 su Ubuntu 20.04

Come aggiornare Google Chrome?

Come aggiornare da Ubuntu 20.04 a Ubuntu 22.04

Come aggiornare Ubuntu

Come installare Python 3.6 su Ubuntu 16.04, Ubuntu 16.10, 17.04