diff --git a/wiki/software-installation/debian-python3-installieren.md b/wiki/software-installation/debian-python3-installieren.md new file mode 100644 index 0000000..176af80 --- /dev/null +++ b/wiki/software-installation/debian-python3-installieren.md @@ -0,0 +1,28 @@ +--- +id: debian-python-installieren +title: Python installieren (Debian based distros) +sidebar_label: 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: + + ```sh + sudo apt-get update + ``` +2. Nun installierst du python und pip. + + ```sh + 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: + ```sh + sudo apt-get install python-is-python3 + ``` \ No newline at end of file