Results 33 comments of Jon Culver

+1. I do see how it qualifies as out of scope, but I'd use an add-on (or completely separate) tool for handling unloading, if it existed.

Someone requested the libraries; if it helps anyone else, they're here (with rpath set to `/tmp/code/lib`): www.jonculver.com/zappa-geo-django-libs.zip

Ooh, yes. 👍 Just now seeing that project, perfect. Might take me a bit to package up a PR but that seems like a much better bet.

So this might be an elementary set of questions... one interesting aspect of adding these libs is that it's part of Django's included contrib package. The Python libs are something...

I set these environment variables: ``` "LD_LIBRARY_PATH": "/tmp/code/lib/", "PROJ_LIB": "/tmp/code/lib/proj4/", ``` and in my (Django) app's settings file, I set: ``` GDAL_LIBRARY_PATH = "/tmp/code/lib/libgdal.so.20.1.3" GEOS_LIBRARY_PATH = "/tmp/code/lib/libgeos_c.so.1" ``` May be...

I add those (the second set of variables) in the Django settings file. I'm not sure where the expected spot would be for e.g. Flask or others. Don't know much...

@giovannicimolin Are you using my branch I linked to in my issue? It is probably horrendously out of date at this point, but it did the trick for me.

👍 I'm all for more permanent solutions! I'm admittedly a bit out of my depth ([my comment above ](https://github.com/Miserlou/Zappa/issues/985#issuecomment-321951380) offers my understanding of the problem) but if I can lend...

@samirtendulkar and you're using my branch, right? Those code paths wouldn't work without it, I don't think. See the first comment under "Possible Fix"

@samirtendulkar so it'd be a few steps: 1. Install `zappa` from my fork; so using `pipenv` pipenv install -e [email protected]:bahoo/zappa.git#egg=zappa 2. Add to your `zappa_settings.json`: project_directory": "/tmp/code", 3. [Download my...