问题描述
数据分析模块可以在Google App Engine上运行吗?
我的第一个倾向是no:网页陈述编译为C 的关键代码路径。因此,由于这不是一个纯粹的Python包,你不能简单地将目录或ZIP文件复制到你的应用程序引擎项目中。
是否可以禁用C扩展并使模块运行在纯python(尽管比较慢)?
截至今天,Google App Engine Python 2.7运行时的,由工程团队根据他们的知名度和开发人员的需求。
您可以通过填写功能请求来请求包含特定库。如果它够了☆☆☆它可能会被考虑包含在即将发布的版本中。
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.
这篇关于 pandas 可以在Google App Engine for Python上运行吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!