You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

853 B

id title sidebar_label
debian-python-installieren Python installieren (Debian based distros) Python installieren

Installation von Python auf Linux Debian Server

Informationen

In diesem Tutorial wird dir gezeigt, wie du Python auf einem VPS, root oder Dedicated Server installierst. Du benötigst dafür eine beliebige Debian basierende distro und Root Rechte. Melde dich zunächst als root mit dem SSH Client deiner Wahl an, z.B. PuTTY oder Terminus.

Installation

  1. Als erstes aktualisierst du deine Paketquellen:

    sudo apt-get update
    
  2. Nun installierst du python und pip.

    sudo apt-get install python3 pip3
    
  3. Wenn du es von Windows gewohnt bist, statt python3 python zu schreiben installiere das paket python-is-python3:

    sudo apt-get install python-is-python3