blob: b5b1f066bc508c3e405cbbd66796b772647a746e (
plain) (
blame)
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
|
Installing
==========
Use the package manager of your operating system to install ranger.
To install ranger manually, use either:
sudo ./setup.py install --optimize=1 --record=uninstall_info
or for short:
sudo make install
Uninstalling
============
Ranger uses python distutils to install ranger which does not support automatic
uninstalling.
However, after installing ranger with one of the ways above, all installed
files are recorded to "uninstall_info". This information can be used to
remove ranger:
cat uninstall_info | xargs -d "\n" sudo rm --
or simply:
sudo make uninstall
|