Download
Pick your system, download the build, and run it. Advanced installs are one click away if you need them.
Choose your platform
Tap the system you use. We show the recommended download first.
Windows 10 / 11
Download the installer, run it, and open MeshChatX from the Start menu. Use portable if you prefer no install.
solo 64 bit
Linux
Most people want the AppImage. Download it, make it executable, and run it.
AppImage
Build portatile, senza gestore pacchetti. Scarica l'architettura corretta.
chmod +x MeshChatX-*.AppImage
./MeshChatX-*.AppImage
More install options
Debian (.deb)
Pacchetti Debian e Ubuntu per AMD64 e ARM64.
sudo apt install ./MeshChatX-*.deb
# fallback if apt cannot resolve dependencies:
sudo dpkg -i MeshChatX-*.deb
sudo apt -f install
RPM (.rpm)
Pacchetto RPM per sistemi x86 a 64 bit.
sudo dnf install ./MeshChatX-*.rpm
# or on openSUSE:
sudo zypper install ./MeshChatX-*.rpm
Alpine Linux (.apk)
Pacchetto apk-tools per Alpine Linux su x86_64. Non è l'APK Android.
sudo apk add --allow-untrusted ./ReticulumMeshChatX-*-linux-alpine-*.apk
Flatpak (.flatpak)
Pacchetto monofile per sistemi con Flatpak installato.
flatpak install ./MeshChatX-*.flatpak
Arch
Compila e installa manualmente con il nostro PKGBUILD. Gestisce le dipendenze e si integra con pacman.
git clone https://github.com/Quad4-Software/MeshChatX.git
cd MeshChatX/packaging/arch
makepkg -si
Dal sorgente
Se vuoi eseguire MeshChatX in locale dal codice sorgente:
git clone https://github.com/Quad4-Software/MeshChatX.git
cd MeshChatX
corepack enable
pnpm install
pnpm run build-frontend
pip install poetry
poetry install
poetry run meshchat --headless --host 127.0.0.1
Container
Copy the Compose file if you run Docker or Podman day to day. Pull commands are under more options.
Compose
Standard docker-compose.yml per installazioni basate su Compose.
services:
meshchatx:
image: quad4io/meshchatx:latest
# or ghcr.io/quad4-software/meshchatx:latest
ports:
- "8000:8000"
volumes:
- meshchatx-data:/root/.reticulum
volumes:
meshchatx-data:
More install options
Esecuzione con Docker. · AMD64 / ARM64
Stessa immagine da entrambi i registry. In Compose usa MESHCHAT_IMAGE per GHCR.
docker pull quad4io/meshchatx:latest
docker pull ghcr.io/quad4-software/meshchatx:latest
docker run -d --name reticulum-meshchatx \
--restart unless-stopped \
--security-opt no-new-privileges:true \
-p 127.0.0.1:8000:8000 \
-v meshchatx-config:/config \
quad4io/meshchatx:latest
Esecuzione con Podman. · AMD64 / ARM64
Stessa immagine da entrambi i registry. In Compose usa MESHCHAT_IMAGE per GHCR.
podman pull quad4io/meshchatx:latest
podman pull ghcr.io/quad4-software/meshchatx:latest
podman run -d --name reticulum-meshchatx \
--restart unless-stopped \
--security-opt no-new-privileges:true \
-p 127.0.0.1:8000:8000 \
-v meshchatx-config:/config \
quad4io/meshchatx:latest
Le immagini Docker sono analizzate con Trivy.
Python
Install from PyPI with pip. That is enough for most people.
pypi.org/project/reticulum-meshchatx
pip install reticulum-meshchatx
More install options
pipx install reticulum-meshchatx
poetry add reticulum-meshchatx
uv pip install reticulum-meshchatx
Esegui il punto d'ingresso meshchatx dal pacchetto senza installazione permanente (uv tool run).
uvx --from reticulum-meshchatx meshchatx
URL wheel diretto
Aggancia il file wheel esatto per questa release da GitHub.
pip install https://github.com/Quad4-Software/MeshChatX/releases/download/v4.8.3/reticulum_meshchatx-4.8.3-py3-none-any.whl
pipx install https://github.com/Quad4-Software/MeshChatX/releases/download/v4.8.3/reticulum_meshchatx-4.8.3-py3-none-any.whl
poetry add https://github.com/Quad4-Software/MeshChatX/releases/download/v4.8.3/reticulum_meshchatx-4.8.3-py3-none-any.whl
uv pip install https://github.com/Quad4-Software/MeshChatX/releases/download/v4.8.3/reticulum_meshchatx-4.8.3-py3-none-any.whl
Android
Use the APK when it is available, or install via Termux for a headless node.
APK universale
Termux
Installazione su Android con Termux. Installa le dipendenze, poi MeshChatX da PyPI. Esecuzione headless con meshchat --headless.
pkg upgrade
pkg install python
pkg install rust
pkg install binutils
pkg install build-essential
pip install reticulum-meshchatx
meshchat --headless