如何在 Google App Engine python 项目中安装 InfluxDB?
How to Install InfluxDB in Google App Engine python project?
我想将 influxdb-python https://github.com/influxdb/influxdb-python 添加到我的应用程序引擎项目中。但是使用 $ pip install influxdb
只会将其安装在本地计算机上。
我应该如何将它作为库安装到我的项目中?
将库复制到您的根目录,与 app.yaml
一起。然后正常导入:
import influxdb
记得只复制the actual库目录。
我想将 influxdb-python https://github.com/influxdb/influxdb-python 添加到我的应用程序引擎项目中。但是使用 $ pip install influxdb
只会将其安装在本地计算机上。
我应该如何将它作为库安装到我的项目中?
将库复制到您的根目录,与 app.yaml
一起。然后正常导入:
import influxdb
记得只复制the actual库目录。