Installation

Quick Start

  1. Clone the repository:

    git clone https://github.com/AlaaAlzahrani/Jiwar.git
    cd Jiwar
    
  2. Create and activate a virtual environment:

    For Windows:

    virtualenv -p python3 venv
    .\venv\Scripts\activate.ps1
    

    For macOS and Linux:

    python3 -m venv venv
    source venv/bin/activate
    
  3. Install dependencies:

    pip install --upgrade pip
    pip install -r requirements.txt
    
  4. Run Jiwar:

    python jiwar.py
    

For more detailed instructions, including how to set up Jiwar on Google Colab, see Using Jiwar in Google Colab.