Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update client docs #923

Merged
merged 1 commit into from
Sep 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs-2.0/14.client/3.nebula-cpp-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Nebula CPP是一款C++语言的客户端,可以连接、管理Nebula Graph图

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

- (推荐)如果需要安装指定版本的Nebula CPP,请使用选项`--branch`指定分支。例如安装v{{ nebula.release }}发布版本,请执行如下命令:
- (推荐)如果需要安装指定版本的Nebula CPP,请使用选项`--branch`指定分支。例如安装v{{ cpp.release }}发布版本,请执行如下命令:

```bash
$ git clone --branch v{{ nebula.release }} https://github.com/vesoft-inc/nebula-cpp.git
$ git clone --branch v{{ cpp.release }} https://github.com/vesoft-inc/nebula-cpp.git
```

- 如果需要安装日常开发版本,请执行如下命令下载`master`分支的源码:
Expand Down
4 changes: 2 additions & 2 deletions docs-2.0/14.client/4.nebula-java-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Nebula Java是一款Java语言的客户端,可以连接、管理Nebula Graph

## 下载Nebula Java

- (推荐)如果需要使用指定版本的Nebula Java,请使用选项`--branch`指定分支。例如使用v{{ nebula.release }}发布版本,请执行如下命令:
- (推荐)如果需要使用指定版本的Nebula Java,请使用选项`--branch`指定分支。例如使用v{{ java.release }}发布版本,请执行如下命令:

```bash
$ git clone --branch v{{ nebula.release }} https://github.com/vesoft-inc/nebula-java.git
$ git clone --branch v{{ java.release }} https://github.com/vesoft-inc/nebula-java.git
```

- 如果需要安装日常开发版本,请执行如下命令下载`master`分支的源码:
Expand Down
4 changes: 2 additions & 2 deletions docs-2.0/14.client/5.nebula-python-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ $ pip install nebula2-python==<version>

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

- (推荐)如果需要安装指定版本的Nebula Python,请使用选项`--branch`指定分支。例如安装v{{ nebula.release }}发布版本,请执行如下命令:
- (推荐)如果需要安装指定版本的Nebula Python,请使用选项`--branch`指定分支。例如安装v{{ python.release }}发布版本,请执行如下命令:

```bash
$ git clone --branch v{{ nebula.release }} https://github.com/vesoft-inc/nebula-python.git
$ git clone --branch v{{ python.release }} https://github.com/vesoft-inc/nebula-python.git
```

- 如果需要安装日常开发版本,请执行如下命令下载`master`分支的源码:
Expand Down
6 changes: 3 additions & 3 deletions docs-2.0/14.client/6.nebula-go-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Nebula Go是一款Go语言的客户端,可以连接、管理Nebula Graph图数

## 下载Nebula Go

- (推荐)如果需要下载指定版本的Nebula Go,请使用选项`--branch`指定分支。例如安装v{{ nebula.release }}发布版本,请执行如下命令:
- (推荐)如果需要下载指定版本的Nebula Go,请使用选项`--branch`指定分支。例如安装v{{ go.release }}发布版本,请执行如下命令:

```bash
$ git clone --branch v{{ nebula.release }} https://github.com/vesoft-inc/nebula-go.git
$ git clone --branch v{{ go.release }} https://github.com/vesoft-inc/nebula-go.git
```

- 如果需要安装日常开发版本,请执行如下命令下载`master`分支的源码:
Expand All @@ -36,7 +36,7 @@ Nebula Go是一款Go语言的客户端,可以连接、管理Nebula Graph图数
$ go get -u -v github.com/vesoft-inc/nebula-go@<tag>
```

`tag`:指定分支。例如`master`或`v{{ nebula.release }}`。
`tag`:指定分支。例如`master`或`v{{ go.release }}`。

## 核心代码

Expand Down