Skip to content

Commit

Permalink
Update installation instructions and URLs to version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Nov 15, 2024
1 parent 61a2881 commit 2cc1a3d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/content/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ brew install kuzu
<TabItem label="Linux">

Use a tool like cURL to download the latest version of the Kùzu CLI to your local machine. Alternatively,
simply copy-paste [this URL](https://github.com/kuzudb/kuzu/releases/download/v0.6.1/kuzu_cli-linux-x86_64.tar.gz)
for x86-64 or [this one](https://github.com/kuzudb/kuzu/releases/download/v0.6.1/kuzu_cli-linux-aarch64.tar.gz)
simply copy-paste [this URL](https://github.com/kuzudb/kuzu/releases/download/v0/kuzu_cli-linux-x86_64.tar.gz)
for x86-64 or [this one](https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-linux-aarch64.tar.gz)
for aarch64 into your browser.

**x86-64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/kuzu_cli-linux-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-linux-x86_64.tar.gz
```

**aarch64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/kuzu_cli-linux-aarch64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-linux-aarch64.tar.gz
```

Double-click the `kuzu_cli-linux-*.tar.gz` file to extract a file named `kuzu`, and give it
Expand All @@ -51,11 +51,11 @@ executable permissions using the command `chmod +x kuzu`.
<TabItem label="Windows">

Use a tool like cURL to download the latest version of the Kùzu CLI to your local machine. Alternatively,
simply copy-paste [this HTTPS URL](https://github.com/kuzudb/kuzu/releases/download/v0.6.1/kuzu_cli-windows-x86_64.zip)
simply copy-paste [this HTTPS URL](https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-windows-x86_64.zip)
into your browser.

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/kuzu_cli-windows-x86_64.zip
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-windows-x86_64.zip
```

Right-click on the `kuzu_cli-xxx.zip` file and click on **Extract All**. This will create a directory
Expand Down Expand Up @@ -142,7 +142,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.6.1</version>
<version>0.7.0</version>
</dependency>
```

Expand All @@ -154,7 +154,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.6.1</version>
<version>0.7.0</version>
</dependency>
```

Expand All @@ -166,7 +166,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.6.1</version>
<version>0.7.0</version>
</dependency>
```

Expand Down Expand Up @@ -254,7 +254,7 @@ any additional installation. You just need to specify the library search path fo
<TabItem label="macOS">

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/libkuzu-osx-universal.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-osx-universal.tar.gz
```

</TabItem>
Expand All @@ -264,27 +264,27 @@ curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/libkuzu-osx-u
**x86-64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/libkuzu-linux-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-linux-x86_64.tar.gz
```

**aarch64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/libkuzu-linux-aarch64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-linux-aarch64.tar.gz
```

**x86-64** ([old ABI](https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html))

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/libkuzu-linux-old_abi-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-linux-old_abi-x86_64.tar.gz
```

</TabItem>

<TabItem label="Windows">

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.6.1/libkuzu-windows-x86_64.zip
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-windows-x86_64.zip
```

</TabItem>
Expand Down

0 comments on commit 2cc1a3d

Please sign in to comment.