gramps/INSTALL

64 lines
2.2 KiB
Plaintext
Raw Normal View History

2008-03-11 16:25:18 +05:30
$Id$
This file contains some useful details on the installation from source code
for GRAMPS. It does not cover installation of a pre-built binary package.
For that use your package manager, the rest is already done by the packager.
Uninstall old version
---------------------
If you do a source install in the same place of an existing install,
you need to remove the old version first. You can delete the old
version by deleting the installed directories (for example,
/usr/share/gramps
/usr/local/lib/pythonx.x/site-packages/gramps
/usr/local/lib/pythonx.x/dist-packages/
/usr/lib/pythonx.x/site-packages/gramps
/usr/lib/pythonx.x/dist-packages/
where pythonx.x is python2.7 or whatever version you installed gramps with.
If you don't know the list of all files that Gramps installed, you can reinstall
it with the --record option, and take a look at the list this produces (so
python setup.py install --record grampsfiles.txt
GRAMPS is a python application, so loading happens on reading the
files, meaning that files of a previous version that are no longer
present in the new version can still be loaded, making the new install
unstable!
2008-03-11 16:25:18 +05:30
distutils install
-----------------
We do not check all dependencies of Gramps, see README for a
2011-05-07 18:41:19 +05:30
list of all required and optional dependencies.
2008-03-11 16:25:18 +05:30
If you are building from released tarball, you should be able to just
run
python setup.py build
python setup.py install
where the last must be done as root. You can work with Gramps if you only build
it by pointing the PYTHONPATH to the build directory, but things like MIME type
and desktop entries will not be created then.
2008-03-11 16:25:18 +05:30
Custom directory installation
-------------------------------------
If you would like to install GRAMPS without being root, or in an
alternative location on windows, supply the --root argument to setup.py
For example:
python setup.py install --root ~/test
or
python setup.py install --root ~/test --enable-packager-mode
2008-03-11 16:25:18 +05:30
The last option, --enable-packager-mode, is needed if you want to disable
execution of post-install mime processing.
2008-03-11 16:25:18 +05:30
Packager's issues
------------------
There is a MANIFEST.in file to indicate the work needed.
To create a source distribution run:
python setup.py sdist
2008-03-11 16:25:18 +05:30