Command Line Interface for deplicate.
Type in your command shell with administrator/root privileges:
pip install deplicate-cli
In Unix-based systems, this is generally achieved by superseding
the command sudo
.
sudo pip install deplicate-cli
If the above commands fail, consider installing it with the option
--user
:
pip install --user deplicate-cli
If the command pip
is not found in your system, but you have the
Python Interpreter and the package setuptools
(>=20.8.1) installed, you can try to install it from the sources, in this way:
- Get the latest tarball of the source code in format ZIP or TAR.
- Extract the downloaded archive.
- From the extracted path, launch the command
python setup.py install
.
TODO