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

Update readme with ubuntu install cmd and refact by collapsed block #825

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,25 +324,39 @@ If you have an AMD GPU `rocm_smi_lib` is required, which may or may not be packa

**Binary release (from native os repo)**

* **openSUSE**
<details><summary>openSUSE</summary><p>

* **Tumbleweed:**
```bash
sudo zypper in btop
```
* For all other versions, see [openSUSE Software: btop](https://software.opensuse.org/package/btop)
* **Fedora**
</p></details>
<details><summary>Fedora</summary><p>

```bash
sudo dnf install btop
```
* **RHEL/AlmaLinux 8+**
</p></details>
<details><summary>RHEL/AlmaLinux 8+</summary><p>

```bash
sudo dnf install epel-release
sudo dnf install btop
```
* **FreeBSD**
</p></details>
<details><summary>FreeBSD</summary><p>

```sh
pkg install btop
```
</p></details>
<details><summary>Ubuntu</summary><p>

```sh
sudo apt install btop
```
</p></details>


**Binary release on Homebrew (macOS (x86_64 & ARM64) / Linux (x86_64))**
Expand Down