From 288f92432e0612543ae9044a6c4e1582fb31d3ab Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Sun, 30 Sep 2012 15:35:31 +0000 Subject: [PATCH] GEPS 026: Replace 'make': update INSTALL with correct execution for Gramps to run the app svn: r20472 --- INSTALL | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/INSTALL b/INSTALL index 65d04c892..a6cc7a789 100644 --- a/INSTALL +++ b/INSTALL @@ -50,11 +50,23 @@ Typical install directories in linux (ubuntu) are: * /usr/local/share/man/man1/xx/man1 : xx language code, man file * /usr/local/share/mime * /usr/local/share/mime-info -running Gramps + +Running Gramps -------------- Gramps is python only, so no compilation is needed, you can even run gramps from the source directory. + a) running with gramps installed globally + You can run gramps with the command: + + python -c 'from gramps.grampsapp import main; main()' + + You find in /usr/local/bin or /usr/bin the executable 'gramps' which does + this for you. + + b) running from the source directory (where you extracted the Gramps source): + python Gramps.py + Custom directory installation -------------------------------------