-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
TFD-42 edited this page Aug 13, 2026
·
1 revision
On a machine that has nothing installed (neither Python nor Ollama), the installers automate everything, checking at each step what is already present:
-
Ollama (local AI engine) — Homebrew on macOS, official script on Linux,
winget/official installer on Windows,pkg install ollamaon Termux when available. -
An Ollama model suited to the machine:
- Android/Termux: mini model
llama3.2:1b(~1.3 GB) — limited RAM/storage on mobile; - macOS / Windows / Linux: medium model
llama3:latest(~4.7 GB).
- Android/Termux: mini model
-
Python 3 — Homebrew/
apt/dnf/pacman/zypper/pkgorwinget. -
Virtual environment (
.venv) — created and activated automatically. -
Python dependencies (
networkx,matplotlib,requests, andpsutilexcept on Android). -
Launch of
process_analyzer_allinone.py(installer arguments are forwarded as-is, e.g../install.sh --no-enrich).
A failure on Ollama or the model never interrupts the installation (the analysis works without AI); a failure on Python is fatal.
macOS / Linux / Termux:
chmod +x install.sh
./install.shWindows (PowerShell):
powershell -ExecutionPolicy Bypass -File install.ps1These installers touch the system (software installation, possibly
sudo/administrator rights) — read them before running them on a sensitive machine, as with any installation script fetched online.
- Python 3.9+
- Dependencies:
networkx,matplotlib,requests, andpsutil(except Android/Termux). Installed automatically on first launch if missing, or:
pip install -r requirements.txt- Ollama is optional — see Ollama Integration. Without it, the tool still works, just without AI-generated descriptions.
- An internet connection is required only for installing dependencies/Ollama, downloading a model, and displaying the 3D graph (CDN library). The analysis itself needs no external network access.
Next: Getting Started
Proc_Map_Analyzer · MIT License · Local-first: your process data never leaves your machine.
Setup
Usage
Concepts
Platforms
Help