Nebula Python¶
Nebula Python 是一款 Python 语言的客户端,可以连接、管理 Nebula Graph 图数据库。
前提条件¶
已安装 Python,版本为 3.6 及以上。
版本对照表¶
Nebula Graph 版本 | Nebula Python 版本 |
---|---|
3.1.0 | 3.1.0 |
2.6.x | 2.6.0 |
2.0.x | 2.0.0 |
2.0.0-rc1 | 2.0.0rc1 |
安装 Nebula Python¶
pip 安装¶
$ pip install nebula3-python==<version>
克隆源码安装¶
-
克隆 Nebula Python 源码到机器。
-
(推荐)如果需要安装指定版本的 Nebula Python,请使用选项
--branch
指定分支。例如安装 v3.1.0发布版本,请执行如下命令:$ git clone --branch release-3.1 https://github.com/vesoft-inc/nebula-python.git
-
如果需要安装日常开发版本,请执行如下命令下载
master
分支的源码:$ git clone https://github.com/vesoft-inc/nebula-python.git
-
-
进入目录 nebula-python。
$ cd nebula-python
-
执行如下命令安装。
$ pip install .
核心代码¶
详细示例请参见 Example。
最后更新:
June 20, 2023