forked from Conan_Doyl/Wiki
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.
28 lines
853 B
28 lines
853 B
3 years ago
|
---
|
||
|
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
|
||
|
```
|