-
Notifications
You must be signed in to change notification settings - Fork 1
/
INSTALL
66 lines (44 loc) · 2.02 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
==================================
Ked Password Manager: Installation
==================================
Copyright (c) 2003 Andrey Lebedev <andrey at micro.lt>
Prerequisites
=============
To run this software you need:
* The python interpreter (tested with 2.1.3+, 2.2.3+ and 2.3+; you
will need Python 2.2.x or newer if you want to run the GUI)
* The Python Crypto module
(http://www.amk.ca/python/code/crypto.html)
Additionally, to run the GUI you will need:
* PyGTK 2 - The python bindings for the GTK Widget Set
(http://www.daa.com.au/~james/software/pygtk/)
* libglade2-0
Running tests
=============
The KedPM distribution contains unit tests. If you want, you can check
the integrity of almost all KedPM components by running ``run_tests``
script in its root directory. After successfully passing all
tests, you will see something like this::
.................................
----------------------------------------------------------------------
Ran 33 tests in 1.040s
OK
If some of the tests fail, tell me about it. Send me the output of this
script and I'll try to fix the problem, as soon as possible.
Installation
============
To install the KedPM support code into your python tree and the KedPM
scripts into ``/usr/local/bin`` (substitute that path with whatever is
appropriate for your system). You will need to have write permission
for the selected location, e.g: being root on Unix::
python setup.py install
If you would like to place the KedPM scripts in a directory other than
``/usr/local/bin``, then specify the preferred location with
``--install-script``. For example, to install them in
``/opt/kedpm/bin``::
python setup.py install --install-scripts=/opt/kedpm/bin
You can also use the ``--prefix /path/to/install`` option to use a
completely different base directory, if you do not want to use
administrator rights. If you choose to do this, take note of the message
at the end of installation and modify the python path accordingly.
.. vim: tw=72 nocindent et