简体   繁体   English

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

[英]Can Pandas run on Google App Engine for Python?

Can the pandas data analysis module run on Google App Engine? 大熊猫数据分析模块可以在Google App Engine上运行吗?

My first inclination is no: the web page states "critical code paths compiled to C ". 我的第一个倾向是否定的:网页说明“ 编译为C的关键代码路径”。 So since this is not a purely python package, you cannot simply copy a directory or ZIP file into your app engine project. 因此,由于这不是纯粹的python包,您不能简单地将目录或ZIP文件复制到您的应用程序引擎项目中。

Is it possible to "disable" the C extensions and have the module run in pure python (albeit slower)? 是否可以“禁用”C扩展并让模块在纯python中运行(尽管速度较慢)?

As of today, Google App Engine Python 2.7 runtime doesn't currently allow running arbitrary C extensions. 截至今天,Google App Engine Python 2.7运行时目前不允许运行任意C扩展。

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. 如果它足够☆☆☆它很可能被考虑包含在即将发布的版本中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM