File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,43 @@ brew tap lablup/tap
3030brew install bssh
3131```
3232
33+ ### Install via Ubuntu PPA
34+
35+ For Ubuntu users, ` bssh ` is available through the official PPA:
36+
37+ ``` bash
38+ # Add the PPA repository
39+ sudo add-apt-repository ppa:lablup/backend-ai
40+ sudo apt update
41+
42+ # Install bssh
43+ sudo apt install bssh
44+ ```
45+
46+ ### Install via Debian Package
47+
48+ For Debian and other Debian-based distributions, download the ` .deb ` package from the [ releases page] ( https://github.com/lablup/bssh/releases ) :
49+
50+ ``` bash
51+ # Download the latest .deb package (replace VERSION with the actual version)
52+ wget https://github.com/lablup/bssh/releases/download/vVERSION/bssh_VERSION_OS_ARCH.deb
53+ # Example: bssh_0.4.0_ubuntu24.04.noble_amd64.deb
54+
55+ # Install the package
56+ sudo dpkg -i bssh_VERSION_OS_ARCH.deb
57+
58+ # If there are dependency issues, fix them with:
59+ sudo apt-get install -f
60+ ```
61+
62+ ### Download Pre-built Binary
63+
64+ Download the latest release from the [ GitHub releases page] ( https://github.com/lablup/bssh/releases ) :
65+
66+ 1 . Go to https://github.com/lablup/bssh/releases
67+ 2 . Download the appropriate binary for your platform
68+ 3 . Extract the archive and place the binary in your ` $PATH `
69+
3370### Install from Cargo
3471
3572``` bash
You can’t perform that action at this time.
0 commit comments