[google-appengine] Re: Use of Pandas in GAE

2021-11-04 Thread Wesley C (Google)
This topic came up recently again in Reddit . I answered there as well as this similar Q on SO . The bottom line is that this shouldn't be an issue after 2018 when the 2nd-gen App Engine service launched. You don't have to

[google-appengine] Re: Use of Pandas in GAE

2017-02-15 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Juan, In the App Engine Standard Environment , the docs explain that code and libraries must be pure python : All code for the Python runtime

[google-appengine] Re: Use of Pandas in GAE

2017-02-15 Thread Juan Antonio Fernández Sánchez
Hi Nick, Thank you for your answer. The problem is that I would like to run these libraries in a service inside a normal GAE app, not in a container in Compute Engine. Thanks! El lunes, 13 de febrero de 2017, 20:12:12 (UTC+1), Nick (Cloud Platform Support) escribió: > > Hey Juan, > > It

[google-appengine] Re: Use of Pandas in GAE

2017-02-13 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Juan, It could be because in installing the C -based python modules locally, pip is compiling C code for your system's architecture, which wouldn't translate to the deployed machine. If this is the case, see if the following works as a solution: You can write a Dockerfile for your Custom

[google-appengine] Re: Use of Pandas in GAE

2017-02-12 Thread Juan Antonio Fernández Sánchez
Thank you so much for the answer Nick, I'm trying to do this without success. I've the dependencie in my requirements.txt file and in the module where I import the module like this: import pandas as pd- If I try to execute the code I've this exception: ImportError: Missing required

[google-appengine] Re: Use of Pandas in GAE

2017-02-09 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Juan Antonio, As you noted correctly, in the Standard Environment , only pure python apps are supported. However in the Flexible Environment , there is no such