Skip to content

Commit 62bbee8

Browse files
committed
update: README.md
1 parent 78d0b5b commit 62bbee8

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,43 @@ brew tap lablup/tap
3030
brew 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

0 commit comments

Comments
 (0)