Download UPtrim
Installers and source for all platforms. Run one command to start.
No license key? A free developer key is included with every download.
Windows
> py -3.12 -m venv .venv
> .venv\Scripts\activate
> pip install fastapi httpx uvicorn
> py -3.12 main.py --web
macOS
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install fastapi httpx uvicorn
$ python3 main.py --web
Linux Desktop
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install fastapi httpx uvicorn
$ python3 main.py --web
Linux Server
$ wget https://dl.uptrim.dev/v1.0.0/UPtrim-1.0.0-linux-x86_64.tar.gz
$ tar -xzf UPtrim-1.0.0-linux-x86_64.tar.gz
$ cd UPtrim
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install fastapi httpx uvicorn
$ python3 main.py --headless --host 0.0.0.0 --port 9099 --workers 2
Three Launch Modes
Web dashboard, terminal TUI, or headless. Pick the one that fits.
Web Dashboard
Memories, users, stats, and settings in your browser. Best for day-to-day management.
$ python3 main.py --web
Terminal TUI
Textual-based dashboard for SSH sessions and headless machines. Same controls, no browser.
$ python3 main.py --tui
Headless
No UI. Runs as a background service — ideal for production servers and Docker.
$ python3 main.py --headless