2026 OpenHuman Installationsanleitung: macOS / Windows / Linux signierte Installation, Ollama lokale Inferenz & Memory Tree Fehlerbehebung

Ca. 18 Min. Lesezeit · MACCOME

Zielgruppe: Entwickler und Power-User, die TinyHumans OpenHuman v0.56.x noch heute auf macOS, Windows oder Linux betreiben wollen — optional mit Ollama und verifiziertem Memory Tree.Ergebnis: signierte Installationspfade (brew / DMG / MSI / apt), Acht-Schritte-Abnahme, 12-Zeilen-Fehlertabelle, Plattformvergleich fuer 7×24-Betrieb.Aufbau: Engpaesse → Spezifikationstabelle → acht Schritte → Kennzahlen → Hosting-Matrix → FAQ inkl. Datenschutz-Hinweisen.

Sechs Installationsfallen: OpenHuman ist kein pip install

Viele Anleitungen beschreiben noch Python-Clone plus requirements.txt. Das entspricht nicht der offiziellen Produktform 2026.

TinyHumans OpenHuman ist eine Rust + Tauri-Desktop-App (GPL-3.0) mit UI-first-Onboarding. Typische Blocker:

  1. curl | bash auf dem Arbeitsrechner. Skripte laden Remote-Code und fuehren ihn aus. Fuer Produktionssysteme gelten signierte DMG / MSI / brew / apt — Wenn/Dann: Wenn Audit noetig ist, dann keine Pipe-to-Shell auf dem Daily Driver.
  2. Gemischte Installationskanaele. brew plus globales npm openhuman erzeugt PATH-Konflikte — installiert, startet aber nicht.
  3. macOS-TCC-Rechte uebersprungen. Bildschirmintelligenz, Meet-Avatar und Tastatur-Vervollstaendigung brauchen Bildschirmaufnahme und Bedienungshilfen.
  4. Local AI ohne Ollama-Modelle. Einstellung aktiv, aber ollama list leer — Inferenz timeout.
  5. Memory Tree als Cloud-Sync missverstanden. Daten liegen lokal in SQLite plus Obsidian-kompatiblem Vault. Ohne Verzeichnis-Export beim Hostwechsel wirkt das Gedaechtnis verloren — relevant fuer Datenschutz: personenbezogene Kontexte bleiben auf der Instanz, bis Sie sie archivieren oder loeschen.
  6. Laptop zugeklappt als 7×24-Host. Hintergrunddenken und Webhooks brauchen eine aktive Desktop-Sitzung.

OpenClaw = CLI, Gateway, Telegram/WhatsApp. OpenHuman = Desktop-GUI, Memory Tree, 118+ Integrationen, Voice/Meet. Dual-Stack auf gemietetem Mac: OpenClaw & OpenHuman Cloud-Mac-Guide. Dieser Artikel: Installation, Abnahme, lokales Modell.

Umgebungsanforderungen: Minimum vs. empfohlene Produktionsstufe

OpenHuman Beta (Mai–Juni 2026) braucht mehr als ein Chat-Client: Vault, optionale Ollama-Gewichte, Bildschirm-Cache. Tabelle: nur Cloud-Routing vs. lokales 13B + Memory Tree.

Parameter Minimum (Cloud-Modelle) Empfohlen (Ollama lokal + Integrationen)
Betriebssystem macOS 12+, Win10 22H2+, Ubuntu 20.04+ macOS 14+ (Apple Silicon) / Win11 / Ubuntu 24.04
CPU / Chip 4 Kerne x86_64 oder Apple M1 Apple M4 / M4 Pro (Unified Memory fuer Ollama)
Arbeitsspeicher 8 GB 16 GB (13B Q4); 70B-Klasse: 64 GB+ oder nur Cloud
Festplatte 5 GB (App + Vault-Start) 40 GB+ (Ollama-Modelle + Logs + Integrations-Cache)
GPU Keine dedizierte GPU noetig (API-Pfad) NVIDIA optional; Apple Silicon: Metal via Ollama
Netzwerk Erreichbarkeit Abo-Routing und OAuth Stabile Latenz; erster Modell-Download: Rechenzentrum-Bandbreite
warning

Sicherheit & Datenschutz: In Produktion signierte Pakete von tinyhumans.ai/openhuman oder GitHub Releases nutzen. curl | bash nur in isolierter VM. Lokale Vault-Daten unterliegen Ihrer Aufbewahrungspflege — bei EU-Mandaten AV-Vertrag und Loeschkonzept dokumentieren (DSGVO).

Acht Schritte: Installation → Smoke-Test → Ollama → Memory Tree

Gueltig fuer macOS, Windows, Linux. Remote-Mac per VNC entspricht lokaler Konsole.

  1. Signierten Kanal waehlen. macOS: Homebrew. Debian/Ubuntu: apt-Repo. Windows: signiertes .msi. Entwicklersignatur pruefen.
  2. Installieren und Version pruefen. Erfolg: App in Launchpad/Startmenue, Version ≥ v0.56.0 (Mai 2026).
  3. Erststart und Konto. TinyHumans-Konto fuer Abo-Routing; Integrationen spaeter moeglich.
  4. macOS-Berechtigungen. Systemeinstellungen → Datenschutz: Bedienungshilfen, Bildschirmaufnahme, Mikrofon.
  5. Smoke-Dialog. Leichte Aufgabe testen; Cloud- oder Local-Pfad muss antworten.
  6. Ollama installieren und starten. brew install ollamaollama serveollama pull qwen2.5:7b.
  7. Local AI in OpenHuman. Einstellungen → Model Routing → Local AI, Base URL http://127.0.0.1:11434, Modell waehlen, speichern.
  8. Memory Tree abnehmen. Aufgabe mit Datei/E-Mail-Kontext; Obsidian-Vault und SQLite-Belegung pruefen.

Plattformspezifische Befehle (offiziell 2026)

bash · macOS
# Empfohlen: Homebrew tap (signierte Kette)
brew tap tinyhumansai/core
brew install openhuman

# Oder: DMG / GitHub Releases
# https://github.com/tinyhumansai/openhuman/releases/latest

# Nur Testmaschine
# curl -fsSL https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/install.sh | bash
bash · Debian/Ubuntu
sudo apt-get install -y --no-install-recommends gnupg2 curl ca-certificates
curl -fsSL https://tinyhumansai.github.io/openhuman/apt/KEY.gpg \
  | sudo gpg --dearmor -o /etc/apt/keyrings/openhuman.gpg
echo "deb [signed-by=/etc/apt/keyrings/openhuman.gpg arch=amd64] \
  https://tinyhumansai.github.io/openhuman/apt stable main" \
  | sudo tee /etc/apt/sources.list.d/openhuman.list
sudo apt-get update && sudo apt-get install -y openhuman
powershell · Windows
# Empfohlen: signiertes .msi
# https://github.com/tinyhumansai/openhuman/releases/latest

# Testmaschine (Skript vorher lesen)
# irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/install.ps1 | iex
bash · Ollama lokale Inferenz
brew install ollama    # oder https://ollama.com/download
ollama serve
ollama pull qwen2.5:7b # fuer 16 GB Unified Memory
ollama list

# OpenHuman: Local AI → http://127.0.0.1:11434

Drei harte Kennzahlen: Version, Stars, Memory-Tree-Mechanik

  • GitHub Stars (Stand Juni 2026): ca. 7.800+, GPL-3.0. Stabile Linie v0.56.0 (2026-05-27). Tag auf Releases vor Installation pruefen.
  • Architektur: Rust-Kern + Tauri (kein Electron). Idle-RAM laut Community deutlich unter typischen Electron-Agent-Clients — relevant fuer Dauerbetrieb und Stromkosten.
  • Memory Tree: lokales SQLite plus Obsidian-kompatibler Vault. Kontext wird in ≤3k-Token-Knoten canonicalisiert. Designziel: milliarden Token Index lokal — keine Cloud-Trainingspipeline.

12 haeufige Fehler und Symptome

Fehler / Symptom Ursache Massnahme
App startet nicht / stuerzt ab Gemischte Kanaele oder alte Version Nur ein Installationsweg; deinstallieren, signiert neu installieren
macOS «beschaedigt» Gatekeeper blockiert unsignierte Kopie Nur offizielle Quellen; keine Repacks
Bildschirmintelligenz tot Keine Bildschirmaufnahme Datenschutz → Bildschirmaufnahme → OpenHuman
Local AI haengt bei Pending Ollama aus oder falscher Port ollama serve; URL 127.0.0.1:11434
connection refused (Ollama) Firewall / Remote-Bind 11434 nur localhost; nicht ins Internet
Inferenz langsam oder OOM Modell zu gross fuer RAM 7B/13B Q4 oder Cloud-Routing
Gmail/Slack verbindet nicht OAuth unvollstaendig / Firmenrichtlinie Assistent erneut; Proxy pruefen
Memory Tree leer Kein indexierbarer Kontext Datei/E-Mail-Aufgabe; Vault-Pfad pruefen
Meet-Avatar ohne Bild Kamera/Mikro nicht freigegeben TCC und Browser-Plugins pruefen
Linux ohne GUI Server ohne Desktop OpenHuman braucht Desktop; headless: OpenClaw CLI
Konfig nach Upgrade weg Kein Backup User-Verzeichnis Application Support vor Upgrade archivieren
Abo-Modell 429 Rate-Limit Routing Local AI oder spaeter; Kontingent pruefen

Plattformvergleich: Laptop, Linux-Desktop, gemieteter Mac Mini M4

Installation loest «kann chatten». Integrationen + Memory-Tree-Komposition brauchen dauerhaft online Host mit stabiler GUI-Sitzung und planbarer Verfuegbarkeit.

Plattform 7×24-Verfuegbarkeit Ollama lokal Einsatz
Privater MacBook Stoppt beim Zuklappen Bestes Metal auf M-Serie POC, Tages-Debug
Linux-Workstation Moeglich mit Desktop NVIDIA CUDA Vorhandener GPU-Tower
x86 Cloud-VPS Hoch Kein offizieller GUI-Pfad OpenHuman nicht empfohlen
Mac Mini M4 Miete Rechenzentrum-Uptime UMA + VNC-Fernwartung Meet/Bildschirm + lokales 13B Produktion

Fazit: Signierte Installation ist Schritt eins — Uptime entscheidet ueber Memory Tree

Mit den acht Schritten schaffen die meisten Teams in 45–90 Minuten Desktop-Smoke plus Ollama lokal. Drei Alternativen haben klare Grenzen: (a) Laptop unterbricht Webhooks; (b) headless Linux ohne Tauri-GUI; (c) Eigentum Mac Mini: Abschreibung, Strom, Laerm bei Ihnen.

Wenn Memory Tree und Integrationen bereits Zeit sparen und Sie planbare Monatskosten, SSH/VNC in Minuten und tarball Vault vor Hostwechsel brauchen — plus lokale Speicherung auf dedizierter Instanz (DSGVO-freundlicher als geteilte SaaS-Profile) — ist ein MACCOME Mac Mini M4 die uebliche Produktionsform. Weiter: Dual-Agent-Guide, Region auf Mietpreisen.

FAQ

Braucht OpenHuman Terminal-Installation?

Nein. UI-first: DMG, MSI, brew, apt ohne Shell. Skripte fuer Testautomatisierung.

OpenHuman und OpenClaw auf einem Mac?

Ja — RAM und SSD beobachten. Fuer 7×24 Desktop plus CLI: Mietknoten oder 32-GB-Stufe.

M2 vs. M3 vs. M4?

Alle unterstuetzt. Ollama-Durchsatz skaliert mit Unified Memory. 16 GB fuer 13B Q4 stabil; groessere Modelle: mehr RAM oder Cloud.

Datenmigration vor Rueckgabe der Miete?

Application Support OpenHuman plus Obsidian-Vault archivieren. MACCOME: Self-Service-Wipe — Hilfe-Center; Loeschkonzept fuer Mandatsende dokumentieren.