forked from Conan_Doyl/Wiki
parent
dc23cefbef
commit
38980fb230
1 changed files with 28 additions and 0 deletions
@ -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 |
||||
``` |
Loading…
Reference in new issue