[Fixed]-Django on Google App Engine- How to import/use 3rd party libraries?

1👍

There’s a good guide on how to use Django on GAE here:
https://cloud.google.com/python/django/appengine

When you follow that guide you get a requirements-vendor.txt file. Edit that file and add django-geojson and django-leaflet to it.
After that you can run pip install -r requirements-vendor.txt -t lib/ to install them.

Now you can follow the rest of the guide for instructions on how to upload everything to GAE.

Leave a comment