I want to use firebase-admin on GAE. So I installed firebase-admin following method.
https://cloud.google.com/appengine/docs/standard/python/tools/using-libraries-python-27
appengine_config.py
from google.appengine.ext import vendor
# Add any libraries install in the "lib" folder.
vendor.add('lib')
requirements.txt
firebase-admin
and install it.
pip install -t lib -r requirements.txt
Then I checked in the "lib" folder, six is existed. And six version is 1.11.0.
But I've already use built-in six.
app.yaml
libraries:
- name: six
version: latest
Built-in six version is "1.9.0".
Does these difference have any effect on the process of GAE? If there is any effect, How to solve this?