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

add-step-of-install-thirdlib #2045

Merged
merged 1 commit into from
Apr 25, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,17 @@ Installing NebulaGraph from the source code allows you to customize the compilin
$ git clone https://github.com/vesoft-inc/nebula.git
```

2. Make the `nebula` directory the current working directory.
2. Go to the `nebula/third-party` directory, and run the `install-third-party.sh` script to install the third-party libraries.

```bash
$ cd nebula
$ cd nebula/third-party
$ ./install-third-party.sh
```

3. Create a `build` directory and make it the current working directory.
3. Go back to the `nebula` directory, create a directory named `build`, and enter the directory.

```bash
$ cd ..
$ mkdir build && cd build
```

Expand Down