Skip to content
Snippets Groups Projects
Commit ecfea44c authored by Pascal Osterwinter's avatar Pascal Osterwinter
Browse files

Merge branch 'docs/update_python_installation' into 'main'

Updated python installation guide to reflect the current state

See merge request !332
parents f1b88da6 8ef6cd6a
No related branches found
No related tags found
1 merge request!332Updated python installation guide to reflect the current state
......@@ -13,6 +13,9 @@ Die Ausführung des Skriptes setzt eine installierte Version von [Python](https:
### Windows
Eine Anleitung zur Installation und Einrichtung unter Windows finden Sie unter [Installationsanleitung Python Windows](https://docs.microsoft.com/de-de/windows/python/beginners).
:::note Hinweis
Python sollte nicht über den Windows-Store installiert werden, da hier Probleme mit dem Installationspfad auftreten können. Außerdem sollte nach der Installation überprüft werden, ob Python auch wirklich der Systemvariablen PATH hinzugefügt wurde. Hierfür muss im Installationsprozess ein Häkchen gesetzt werden.
:::
### Linux
Der Ablauf und die Befehle zur Installation und Einrichtung von Python unter Linux unterscheiden sich je nach verwendeter Distribution.
......@@ -46,6 +49,12 @@ Navigieren Sie anschließend zum Verzeichnis in dem Sie die Tools entpackt haben
### Erforderliche Python-Pakete installieren
Um das Skript zur Erstellung von JSON Web Keys auszuführen, werden zusätzliche Python Pakete benötigt. Diese lassen sich jedoch sehr einfach mithilfe von **pip** und **poetry** nachinstallieren. Dazu kann unter Windows die **PowerShell** sowie **Terminal** unter Linux verwendet werden.
:::note Hinweis
Im Folgenden können sich je nach Installation die Kommandos ein wenig unterscheiden.
Pip: pip3, pip
Python: python3, python, py
:::
```console
$ pip3 install poetry
$ poetry install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment