Installation#

ocom is an end-user application, not a library, so install it as a standalone tool rather than as a project dependency. It ships a single ocom command that launches the TUI.

Stable release#

Install ocom into an isolated environment with your preferred tool installer:

uv tool install ocom
pipx install ocom

Or run it without installing:

uvx ocom

On macOS/Linux, install it from the Homebrew tap:

brew install hasansezertasan/tap/ocom

On Windows, install it from the Scoop bucket:

scoop bucket add hasansezertasan https://github.com/hasansezertasan/scoop-bucket
scoop install ocom

From source#

The source files for ocom can be downloaded from the GitHub repo.

You can either clone the public repository:

git clone https://github.com/hasansezertasan/ocom.git

Or download the tarball:

mkdir ocom
curl -fL https://github.com/hasansezertasan/ocom/tarball/main | tar -xz --strip-components=1 -C ocom

Once you have a copy of the source, you can install it with:

cd ocom
uv sync