Google Cloud Functions 未在 GCP Cloud Functions 上部署 - 加载用户代码时函数失败

Google Cloud Function not deploying on GCP Cloud functions - Function failed on loading user code

我的 python 代码在我的机器上运行良好。但是,当按照正确的要求在 GCP 上部署它时,它并没有按预期进行部署。 我已经解决了所有错误,现在只剩下以下错误

我没有看到这个错误并且似乎无法解决它 - 有没有其他人看到过这个错误?

中所述:

Serverless environments such as App Engine, Cloud Functions and Cloud Run, run in a sandbox, similar to gVisor. This sandbox protects the system from malicious calls and blocks some low level instruction. This one to get the CPU capabilities should be discarded. I got the same when I ran Tensorflow Serving on Cloud Run.

此错误已在 answer:

中讨论

The warning is just telling you that OpenBLAS, which is a dependency of Pandas, is not able to determine some settings of Cloud Function environments, most likely due to Cloud Function runs on virtualized environments. I suggest that you just ignore the warning as it is not an issue in Cloud Function.

有关更多信息,您可以参考关于类似问题的详细解释