[Answered ]-Error importing django-widget-tweaks on Google App Engine

2👍

You can install third-party libraries yourself. Since this is not one of the runtime-provided third-party libraries you have to fulfill the following criteria:

  • The library must be implemented as pure Python code (no C extensions).
  • The code is uploaded to App Engine with your application code, and
    counts toward file quotas.
  • Use pip to install the library and the
    vendor module to enable importing packages from the third-party
    library directory

From what I can tell the module you want to use is fully implemented in Python, so this should be straight forward. Consult the docs on vendoring for more information on how to do this.

Leave a comment