Anfang des Inhaltsbereichs

Vorgehensweisen Konfiguration der Python-Module Dokument im Navigationsbaum lokalisieren

Voraussetzungen

Sie haben Python auf Ihrem Rechner installiert.

Vorgehensweise

...

       1.      Laden Sie das Paket maxdb-python-* für Ihre Plattform von der MaxDB-Website herunter:

Siehe Konzepte des Datenbanksystems, StrukturlinkDownload.

Beispiel

maxdb-python-win-32bit-i386-7_6_00_16.zip

       2.      Entpacken Sie dieses Paket in ein beliebiges Verzeichnis <module_path> auf Ihrem Rechner.

Beispiel

C:\tmp\maxdb-python-win-32bit-i386-7_6_00_16

       3.      Fügen Sie das Verzeichnis <module_path> zur Umgebungsvariablen PYTHONPATH hinzu:

     Microsoft Windows:

set PYTHONPATH=%PYTHONPATH%;<module_path>

Beispiel

set PYTHONPATH=%PYTHONPATH%;"C:\tmp\maxdb-python-win-32bit-i386-7_6_00_16"

     UNIX/Linux (sh/bash):

PYTHONPATH=$PYTHONPATH:<module_path>

export PYTHONPATH

Siehe auch:

Python-Handbuch

Ende des Inhaltsbereichs