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

fix MO bin package name (amd -> x86_64) in download link #743

Merged
merged 2 commits into from
Sep 13, 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 @@ -92,8 +92,8 @@ Debian11.1 版本默认没有安装 MySQL Client,因此需要手动下载安

```bash
mkdir -p /root/matrixone & cd /root/
wget https://github.com/matrixorigin/matrixone/releases/download/v1.0.0-rc1/mo-v1.0.0-rc1-linux-amd64.zip
unzip -d matrixone/ mo-v1.0.0-rc1-linux-amd64.zip
wget https://github.com/matrixorigin/matrixone/releases/download/v1.0.0-rc1/mo-v1.0.0-rc1-linux-x86_64.zip
unzip -d matrixone/ mo-v1.0.0-rc1-linux-x86_64.zip
```

ARM 架构系统安装包:
Expand All @@ -110,8 +110,8 @@ Debian11.1 版本默认没有安装 MySQL Client,因此需要手动下载安

```bash
mkdir -p /root/matrixone & cd /root/
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.0.0-rc1/mo-v1.0.0-rc1-linux-amd64.zip
unzip -d matrixone/ mo-v1.0.0-rc1-linux-amd64.zip
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.0.0-rc1/mo-v1.0.0-rc1-linux-x86_64.zip
unzip -d matrixone/ mo-v1.0.0-rc1-linux-x86_64.zip
```

ARM 架构系统安装包:
Expand All @@ -124,7 +124,7 @@ Debian11.1 版本默认没有安装 MySQL Client,因此需要手动下载安

=== "**下载方式三:页面下载**"

如果你想通过更直观的页面下载的方式下载,直接点击进入[版本 1.0.0-rc1](https://github.com/matrixorigin/matrixone/releases/tag/v1.0.0-rc1),下拉找到 **Assets** 栏,点击安装包 *mo-v1.0.0-rc1-linux-amd64.zip* 或者 *mo-v1.0.0-rc1-linux-arm64.zip* 下载再使用 ```unzip``` 命令解压即可。
如果你想通过更直观的页面下载的方式下载,直接点击进入[版本 1.0.0-rc1](https://github.com/matrixorigin/matrixone/releases/tag/v1.0.0-rc1),下拉找到 **Assets** 栏,点击安装包 *mo-v1.0.0-rc1-linux-x86_64.zip* 或者 *mo-v1.0.0-rc1-linux-arm64.zip* 下载再使用 ```unzip``` 命令解压即可。

## 步骤 3:安装 mo_ctl 工具

Expand Down