File tree Expand file tree Collapse file tree 1 file changed +18
-16
lines changed
website/translated_docs/zh-CN/version-0.5.0 Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change @@ -9,27 +9,29 @@ original_id: quickstart
9
9
10
10
请根据您使用的操作系统平台选择安装方式:
11
11
12
- - MacOS 平台
13
-
14
- - 🍺 Homebrew 用户可以直接在命令行:
12
+ #### MacOS 平台
13
+
14
+ - 🍺 Homebrew 用户可以直接在命令行:
15
15
16
16
``` bash
17
- brew tap CovenantSQL/cql && brew install cql
18
- ```
17
+ brew tap CovenantSQL/cql && brew install cql
18
+ ```
19
+
20
+ - 非 Homebrew,可以执行:
19
21
20
- - 非 Homebrew,可以执行:
22
+ ``` bash
23
+ sudo bash -c ' curl -L "https://bintray.com/covenantsql/bin/download_file?file_path=CovenantSQL-v0.5.0.osx-amd64.tar.gz" | \
24
+ tar xzv -C /usr/local/bin/ --strip-components=1'
25
+ ```
21
26
22
- - ` ` ` bash
23
- curl -L " https://bintray.com/covenantsql/bin/download_file?file_path=CovenantSQL-v0.5.0.osx-amd64.tar.gz" | \
24
- sudo tar xzv -C /usr/local/bin/ --strip-components=1
25
- ` ` `
27
+ #### Linux 平台
26
28
27
- - Linux 平台请可以执行 :
29
+ 在命令行中执行 :
28
30
29
- - ` ` ` bash
30
- curl -L " https://bintray.com/covenantsql/bin/download_file?file_path=CovenantSQL-v0.5.0.linux-amd64.tar.gz" | \
31
- sudo tar xzv -C /usr/local/bin/ --strip-components=1
32
- ` ` `
31
+ ``` bash
32
+ sudo bash -c ' curl -L "https://bintray.com/covenantsql/bin/download_file?file_path=CovenantSQL-v0.5.0.linux-amd64.tar.gz" | \
33
+ tar xzv -C /usr/local/bin/ --strip-components=1'
34
+ ```
33
35
34
36
安装完成后可以执行下面的命令,查看是否安装成功
35
37
@@ -44,7 +46,7 @@ sudo chmod a+x /usr/local/bin/cql* # Fix Permission
44
46
sudo ln -s /usr/local/bin/cql* /usr/bin/ # Fix if /usr/local/bin not in $PATH
45
47
```
46
48
47
- 如果问题依旧存在请在我们的 GitHub 页面[提交 Issue](https://github.com/CovenantSQL/CovenantSQL/issues/new? assignees=& labels=bug& template=bug_report.md& title=%5BBUG%5D)。
49
+ 如果问题依旧存在请在我们的 GitHub 页面 [ 提交 Issue] ( https://github.com/CovenantSQL/CovenantSQL/issues/new?assignees=&labels=bug&template=bug_report.md&title=%5BBUG%5D ) 。
48
50
49
51
### 工具包介绍
50
52
You can’t perform that action at this time.
0 commit comments