且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

pandas 可以在Google App Engine for Python上运行吗?

更新时间:2023-01-19 13:09:35

截至今天,Google App Engine Python 2.7运行时当前不允许运行任意C扩展名。



但它确实允许包含第三方库,由工程团队根据他们的知名度和开发人员的需求。

您可以通过填写功能请求来请求包含特定库 公共问题跟踪器 。如果它够了☆☆☆它可能会被考虑包含在即将发布的版本中。


Can the pandas data analysis module run on Google App Engine?

My first inclination is no: the web page states "critical code paths compiled to C". So since this is not a purely python package, you cannot simply copy a directory or ZIP file into your app engine project.

Is it possible to "disable" the C extensions and have the module run in pure python (albeit slower)?

As of today, Google App Engine Python 2.7 runtime doesn't currently allow running arbitrary C extensions.

But it does allow inclusion of third party library that have been hand selected by the engineering team based on their popularity and developer demand.

You can request for a specific library to be included by filling a feature request on the public issue tracker. If it gets enough ☆☆☆ it is likely to be considered for inclusion in an upcoming release.