我无法将 matplotlib 导入谷歌应用引擎。我用谷歌搜索并找到了一些解决方案,但它们似乎都不适合我。在我的 app.yaml 文件中,我有
libraries:
- name: matplotlib
version: latest
- name: numpy
version: latest
在我的 python 文件中,我将导入我可以拥有的 numpy
numpy.arange(10)
问题是当我尝试导入 matplotlib
import matplotlib as plt
访问页面时出现此错误
The website encountered an error while retrieving http://localhost:8080/.
It may be down for maintenance or configured incorrectly.
我删除了 matplotlib 导入,刷新,一切都恢复正常了。我已经看到应用引擎网页使用 matplotlib,例如http://gae-matplotlib-demo.appspot.com导入 matplotlib,所以我知道这是可能的。
如何在 Google App Engine 中使用 matplotlib?