Erstellen Sie ein libs / -Verzeichnis
pip install -t libs Bibliotheksname
Installieren Sie die Bibliothek unter libs wie folgt.
pip install -t, --target <dir>
Install packages into <dir>. By default this will not replace existing files/folders in <dir>. Use –upgrade to replace existing packages in <dir=> with new versions.
Sie können die Bibliothek in GAE verwenden, indem Sie die Hauptseite und darunter hinzufügen und den Pfad zu libs zu Ihrer Anwendung hinzufügen.
import sys
sys.path.insert(0, 'libs')
Beispiel für die Verwendung von Flask mit GAE: Cocodrips / GAE-Flask-Anwendung