Python 3.9: Update auf die neueste Version

say_hello

say_hello

Dauergast
179
Hallo und guten Morgen,


ich hab auf MX-Linux Anaconda am Start: nun denke ich dass ich alles mal auf den allerneuesten Stand bringen will - das sollte über die Kommandozeile wohl gehen.


conda-base Python 3.7.6

Python 3.7.6
(default, Jan 8 2020, 19:59:22)
Type "copyright", "credits" or "license" for more information.
IPython 7.12.0 -- An enhanced Interactive Python.

Spyder 4.0.1
The Scientific Python Development Environment | Spyder-IDE.org
Copyright © 2009-2019 Spyder Project Contributors and others.
Distributed under the terms of the MIT License.
Python 3.7.6 64-bit | Qt 5.9.6 | PyQt5 5.9.2 | Linux 4.19.0-6-amd64

VSCode 1.56.2



ich denke dass ich hier erstmal Python auf den neuesten Stand bringen sollte. Das kann man alles über die Kommandozeile erledigen.

hier hab ich eine Anleitung gefunden: A Guide to Upgrade Your Python to 3.9 🐍


Code:
$ sudo add-apt-repository ppa:deadsnakes/ppa
$ sudo apt update
$ sudo apt install python3.9

Then, you can check your new and existing Python installation version as commands below:

Ein sudo apt update ergibt hier folgendes:


Code:
(base) root@mx:/home/martin# sudo apt update
OK:1 http://deb.debian.org/debian buster-updates InRelease
OK:2 http://deb.debian.org/debian buster InRelease                                                 
OK:3 http://deb.debian.org/debian-security buster/updates InRelease                                
OK:4 http://dl.google.com/linux/chrome/deb stable InRelease                                        
OK:5 http://ftp.halifax.rwth-aachen.de/mxlinux/packages/mx/repo buster InRelease                   
0% [Verbunden mit packagecloud.io (54.183.38.243)] [Warten auf Kopfzeilen] [Verbunden mit packages.
OK:6 https://packages.microsoft.com/repos/vscode stable InRelease                                  
Ign:7 http://repo.vivaldi.com/stable/deb stable InRelease                                          
OK:8 http://repo.vivaldi.com/stable/deb stable Release                    
OK:9 https://packagecloud.io/AtomEditor/atom/any any InRelease
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.       
Statusinformationen werden eingelesen.... Fertig
Alle Pakete sind aktuell.
(base) root@mx:/home/martin#

und ferner;:

Code:
(base) root@mx:/home/martin# sudo apt install python3.9
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.       
Statusinformationen werden eingelesen.... Fertig
E: Paket python3.9 kann nicht gefunden werden.
E: Mittels des Musters »python3.9« konnte kein Paket gefunden werden.
E: Mittels regulärem Ausdruck »python3.9« konnte kein Paket gefunden werden.
(base) root@mx:/home/martin#


darüber hinaus; ich hab zwar kein Ubuntusystem hier - aber hier hab ich noch eine weiter Moeglichkeit entdeckt - offenslichtlich für Ubuntu gedacht;

How to update python version to 3.8?


Step 1: First install the Ubuntu software properties package if it’s not already installed on your system.

Code:
$ sudo apt update

$ sudo apt install software-properties-common

Step 2: After that run the commands to add the PPA.

Code:
$ sudo add-apt-repository ppa:deadsnakes/ppa

Step 3: Finally, run below to install Python 3.8

Code:
$ sudo apt update
$ sudo apt install python3.8

You can check as below:

Code:
$ python3 --version
 

Ähnliche Themen

P
Antworten
0
Aufrufe
139
PrinzessinT
P
say_hello
Antworten
0
Aufrufe
280
say_hello
say_hello
say_hello
Antworten
0
Aufrufe
479
say_hello
say_hello
Zurück
Oben Unten