0

使用 python 绑定时出现以下异常。我认为客户端绑定 API 是向后兼容的。如果不是,我如何/在哪里可以获得与版本 610 对应的 python 库

  fdb.api_version(610)
  File "/usr/local/lib/python2.7/dist-packages/fdb/__init__.py", line 76, in api_version
    "%d, but the installed library supports a maximum version of %d." % (header_version, max_supported_ver))
RuntimeError: This version of the FoundationDB Python binding is not supported by the installed FoundationDB C library. The binding requires a library that supports API version 620, but the installed library supports a maximum version of 610.
4

1 回答 1

1

运行 python 客户端的主机也需要安装基础数据库客户端。

例如,对于 Ubuntu 上的 6.2.20,客户端的下载链接在此处

于 2020-06-18T17:52:00.050 回答