summary refs log tree commit diff stats
path: root/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL30
1 files changed, 30 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 00000000..e61f63de
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,30 @@
+You can run ranger without installing by simply starting the executable
+file ranger.py in the top directory of this package.
+
+
+To install ranger, follow this instructions:
+
+0. Make sure you have a recent version of python, including the
+   curses module, which is the case if this shell command prints no errors:
+   python -c 'import curses'
+
+
+1. Copy the file "ranger.py" into any of the directories in the PATH
+   environment variable, for example to "/usr/bin/ranger"
+
+
+2. Copy the directory "ranger" into one of the python module search
+   paths, for example to "/usr/lib/python2.6/site-packages/ranger".
+
+   Ensure that the path is listed by the command:
+   python -c 'import sys; print("\n".join(sys.path))'
+
+
+3. Optionally, you can activate an extra feature: When you exit ranger,
+   the directory of the current shell can be changed to the last visited
+   directory in ranger.  To do so, add this alias to your shell rc file:
+
+   alias rng="source ranger ranger"
+
+   (Unfortunately this feature is shell dependent.  It has been
+   successfully tested with bash and zsh only.)
10-05-16 16:28:42 +0200 updated pydoc' href='/akspecs/ranger/commit/doc/pydoc/ranger.shared.html?h=v1.9.0b2&id=ef0157ff37404cf757f57711c62bb352a2971fa6'>ef0157ff ^
f07bb12f ^


















ef0157ff ^
f07bb12f ^






















ef0157ff ^
f07bb12f ^














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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107