Improved README

This commit is contained in:
matthias@arch 2021-09-23 15:18:28 +02:00
parent 49fffb983c
commit 65ad6c0037

View File

@ -1,4 +1,4 @@
# imgsort - Glowzwiebel Image Sorter # imgsort - Image Sorter
This is a python program that lets you easily sort images from one directory into other directories. This is a python program that lets you easily sort images from one directory into other directories.
For example, you could go through your phone's camera folder and sort the images into different folders, like *Family*, *Landscapes*, *Friends* etc. For example, you could go through your phone's camera folder and sort the images into different folders, like *Family*, *Landscapes*, *Friends* etc.
@ -17,8 +17,12 @@ For example, you could use:
4. Enjoy the slideshow! 4. Enjoy the slideshow!
## Installation ## Installation
##### 1. With pip Clone this repository and install it using python-pip.
Clone this repository using `git clone https://github.com/MatthiasQuintern/imgsort.git`.
Go into the the downloaded folder using `cd imgsort`.
Install with pip using `python3 -m pip install .` or `pip3 install .`.
pip should also install https://github.com/seebye/ueberzug, which lets you view images in a terminal. pip should also install https://github.com/seebye/ueberzug, which lets you view images in a terminal.
```shell
cd ~/Downloads
git clone https://github.com/MatthiasQuintern/imgsort.git
cd imgsort
python3 -m pip install .
```
You can also install it system-wide using `sudo python3 -m pip install.`