# Python3 Installation

* Aktualisiere die Paketlisten & installiere die Updates.

```bash
apt update && apt upgrade -y
```

* Installieren Sie die benötigten Pakete

```bash
apt install wget build-essential libncursesw5-dev libssl-dev \
     libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev   -y
```

* Python3.11 Installieren

```bash
wget https://www.python.org/ftp/python/3.11.3/Python-3.11.3.tgz
```

* Python3.11 Extrahieren

```bash
tar xzf Python-3.11.3.tgz 
```

* Für die Kompilierung von Python3.11

```bash
./configure --enable-optimizations 
```

* Um Python3.11 ui Installieren

```bash
make altinstall
```

Python3.11 Ist erfolgreich Installiert


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ugurlu.de/rootserver/python3-installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
