From 38980fb2300f852c79451c15f9fb2e6e5034a6bf Mon Sep 17 00:00:00 2001 From: Da_Mivolis Date: Mon, 6 Sep 2021 15:41:29 +0200 Subject: [PATCH] added python wiki entry Signed-off-by: Da_Mivolis --- .../debian-python3-installieren.md | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 wiki/software-installation/debian-python3-installieren.md 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