File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# VAST DataEngine CLI
22
3- Version: v5.5.0-1.0.0
3+ Version: v5.5.0-1.0.1
44
55> Command-line interface for managing and building applications on the VAST DataEngine platform.
66
@@ -20,21 +20,45 @@ Welcome to the VAST DataEngine CLI! This is your doorway to building and managin
2020
2121## Installation
2222
23- ### Using cURL
23+ Download the ` vastde ` binary for your platform from the [ releases page ] [ releases ] , or use the instructions below.
2424
25- You need the ` vastde ` binary for your platform. These can be found on the [ releases page ] [ releases ] .
25+ ### macOS (Apple Silicon)
2626
27- The script below will automatically detect your OS and architecture:
27+ ``` bash
28+ curl -fsSL -o vastde https://github.com/vast-data/dataengine-cli/releases/download/v5.5.0-1.0.1/vastde_darwin_arm64
29+ chmod +x vastde
30+ sudo mv vastde /usr/local/bin
31+ ```
32+
33+ ### macOS (Intel)
2834
2935``` bash
30- OS=$( uname -s | tr A-Z a-z)
31- ARCH=$( uname -m | sed ' s/x86_64/amd64/' | sed ' s/aarch64/arm64/' )
32- curl -fsSL -o vastde https://github.com/vast-data/dataengine-cli/releases/download/v5.5.0-1.0.0/vastde_${OS} _${ARCH}
36+ curl -fsSL -o vastde https://github.com/vast-data/dataengine-cli/releases/download/v5.5.0-1.0.1/vastde_darwin_amd64
3337chmod +x vastde
3438sudo mv vastde /usr/local/bin
3539```
3640
37- Verify the installation:
41+ ### Linux (x86_64)
42+
43+ ``` bash
44+ curl -fsSL -o vastde https://github.com/vast-data/dataengine-cli/releases/download/v5.5.0-1.0.1/vastde_linux_amd64
45+ chmod +x vastde
46+ sudo mv vastde /usr/local/bin
47+ ```
48+
49+ ### Linux (ARM64)
50+
51+ ``` bash
52+ curl -fsSL -o vastde https://github.com/vast-data/dataengine-cli/releases/download/v5.5.0-1.0.1/vastde_linux_arm64
53+ chmod +x vastde
54+ sudo mv vastde /usr/local/bin
55+ ```
56+
57+ ### Windows (x86_64)
58+
59+ Download [ vastde_windows_amd64.exe] ( https://github.com/vast-data/dataengine-cli/releases/download/v5.5.0-1.0.1/vastde_windows_amd64.exe ) and add it to your PATH.
60+
61+ ### Verify Installation
3862
3963``` bash
4064vastde version
Original file line number Diff line number Diff line change 1- VERSION=v5.5.0-1.0.0
2- COMMIT=ba3e461c2439be3d25babf0c66fe9dfb1e2f2fe6
1+ VERSION=v5.5.0-1.0.1
2+ COMMIT=ca51d4cdc4732123f609b69e59c02a8bb6d5440f
You can’t perform that action at this time.
0 commit comments