diff options
author | hut <hut@lavabit.com> | 2010-01-14 02:39:40 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-01-14 02:39:40 +0100 |
commit | f51bd48a141e4886a48c4f3d498a1c329bbaf193 (patch) | |
tree | f073c92c31d957a4eefb63904f8127cd199f7910 /INSTALL | |
parent | 757e1f5562709d3a625ea9258a3602502577d324 (diff) | |
download | ranger-f51bd48a141e4886a48c4f3d498a1c329bbaf193.tar.gz |
added install instructions
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 30 |
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.) |