103 lines
3.2 KiB
Markdown
103 lines
3.2 KiB
Markdown
---
|
|
title: Gramps
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, genealogy, app-marathon3-rattrapage-b]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=genealogy&app=gramps]
|
|
---
|
|
|
|
# 🌲 Gramps
|
|
|
|
> Logiciel de généalogie open source de référence — desktop robuste, GEDCOM, rapports, multi-plateforme.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [gramps-project.org](https://gramps-project.org) |
|
|
| **GitHub** | [gramps-project/gramps](https://github.com/gramps-project/gramps) |
|
|
| **License** | GPL-2.0 |
|
|
| **Langage** | Python (GTK) |
|
|
| **Étoiles GitHub** | ~1.1k ⭐ |
|
|
| **Catégorie** | [[cat-genealogy\|Genealogy / Family Trees]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Gramps** (Genealogical Research and Analysis Management Programming System) est un logiciel de généalogie **desktop** mature, utilisé par des millions de généalogistes, supportant GEDCOM, Gramps XML (plus riche), cartes GeoView, rapports détaillés (livres familiaux), outils d'analyse (recherche de doublons), et un écosystème d'addons. Différence vs [[app-webtrees]] (web) : Gramps est une **app desktop locale** (multi-plateforme Linux/Windows/macOS) sans interface web par défaut — on peut néanmoins publier via Gramps Web (addon séparé). Pour qui: généalogistes qui travaillent hors-ligne sur de très gros arbres (centaines de milliers d'individus) avec un outil éprouvé depuis 2001.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Desktop
|
|
|
|
```bash
|
|
# Debian/Ubuntu
|
|
sudo apt install gramps
|
|
|
|
# Fedora
|
|
sudo dnf install gramps
|
|
|
|
# Arch
|
|
sudo pacman -S gramps
|
|
|
|
# macOS
|
|
brew install gramps
|
|
|
|
# Windows: installateur sur le site officiel
|
|
```
|
|
|
|
### Gramps Web (optionnel, pour accès web)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
gramps-webapi:
|
|
image: ghcr.io/gramps-project/gramps-webapi:latest
|
|
container_name: gramps-webapi
|
|
restart: unless-stopped
|
|
volumes:
|
|
- gramps-data:/app/data
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.gramps.rule=Host(`genealogy.example.com`)
|
|
- traefik.http.routers.gramps.entrypoints=websecure
|
|
- traefik.http.routers.gramps.tls.certresolver=letsencrypt
|
|
|
|
volumes:
|
|
gramps-data:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-webtrees]] — Version web collaborative.
|
|
- **Ancestris** — Desktop Java, plus simple.
|
|
- **RootsMagic** — Windows, freemium mais pas libre.
|
|
- **GenealogyJ** — Java, ancien.
|
|
- **MyFamilyTree** — Desktop.
|
|
|
|
### Propriétaires
|
|
- **Ancestry.com** — Cloud leader.
|
|
- **MyHeritage** — Pro + IA photo.
|
|
- **Legacy Family Tree** — Windows, payant.
|
|
- **MacFamilyTree** — macOS, payant.
|
|
|
|
## 🔐 Sécurité
|
|
- **Format Gramps XML**: sauvegarder régulièrement, contient tout l'arbre.
|
|
- **GEDCOM export**: utile pour partager.
|
|
- **Gramps Web**: comptes utilisateurs, HTTPS obligatoire.
|
|
- **Privacy**: infos personnes vivantes à protéger.
|
|
- **Mises à jour**: suivre la roadmap (v5.x → v6).
|
|
|
|
## 📚 Ressources
|
|
- [Documentation](https://gramps-project.org/wiki/)
|
|
- [GitHub](https://github.com/gramps-project/gramps)
|
|
- [Addons](https://gramps-project.org/wiki/index.php?title=Third-party_Addons)
|
|
|
|
## Pages Liées
|
|
- [[cat-genealogy]] — Catégorie Genealogy
|
|
- [[app-webtrees]] — Concurrent web
|
|
- [[recettes-docker-compose]] — Templates Docker
|