From 110a11cd7dfa4e9f8364a3a7df1849c0a482530b Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Thu, 30 Mar 2023 18:02:59 +0800 Subject: [PATCH] add-step-of-install-thirdlib --- ...1.install-nebula-graph-by-compiling-the-source-code.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md index 66e31683db3..8691d4a3033 100644 --- a/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md +++ b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md @@ -28,15 +28,17 @@ $ git clone https://github.com/vesoft-inc/nebula.git ``` -2. 进入目录`nebula`。 +2. 进入`nebula/third-party`目录,安装 NebulaGraph 依赖的第三方库。 ```bash - $ cd nebula + $ cd nebula/third-party + $ ./install-third-party.sh ``` -3. 创建目录`build`并进入该目录。 +3. 返回`nebula`目录,创建目录`build`并进入该目录。 ```bash + $ cd .. $ mkdir build && cd build ```