Skip to content

Installation

A_Reza edited this page Nov 18, 2025 · 1 revision

Installation

Prerequisites

  • Python 3.6+ installed on your system.

Step 1: Clone the Repository

git clone https://github.com/YOUR_USERNAME/Sortify.git
cd Sortify

Step 2: Install Dependencies

Sortify uses colorama for its user interface.

pip install -r requirements.txt

Usage Guide

There are two ways to use Sortify: Interactive Mode or Command Argument Mode.

Method 1: Interactive Mode (Recommended)

If you run the script without arguments, it will ask you for the target folder.

  1. Run the script:
    python main.py
  2. You will see your OS detected in the banner.
  3. Paste the path to the folder you want to organize (or type . for the current directory).

Tip: You can drag and drop the folder from your File Explorer/Finder into the terminal window to auto-paste the path.

Method 2: Command Line Arguments

Power users can specify the path directly in the command.

# Syntax
python main.py "PATH_TO_DIRECTORY"

# Windows Example
python main.py "C:\Users\Alex\Downloads"

# Linux/macOS Example
python main.py ~/Downloads

Clone this wiki locally