跳转至

Nebula PythonGraph

Graph 是一款 Python 语言的客户端,可以连接、管理 NebulaGraph 图数据库。

前提条件Graph

已安装 Python,版本为 3.6 及以上。

版本对照表Graph

NebulaGraph 版本 Nebula Python 版本
3.0.1 3.0.0
2.6.x 2.6.0
2.0.x 2.0.0
2.0.0-rc1 2.0.0rc1

安装 Nebula PythonGraph

pip 安装Graph

$ pip install nebula3-python==<version>

克隆源码安装Graph

  1. 克隆 Nebula Python 源码到机器。

    • (推荐)如果需要安装指定版本的 Nebula Python,请使用选项--branch指定分支。例如安装 v3.0.0发布版本,请执行如下命令:

      $ git clone --branch v3.0.0 https://github.com/vesoft-inc/nebula-python.git
      
    • 如果需要安装日常开发版本,请执行如下命令下载master分支的源码:

      $ git clone https://github.com/vesoft-inc/nebula-python.git
      
  2. 进入目录 nebula-python。

    $ cd nebula-python
    
  3. 执行如下命令安装。

    $ pip install .
    

核心代码Graph

详细示例请参见 Graph。


最后更新: February 15, 2022