Installation

This guide covers the two methods for installing Easy Scanlate. For the vast majority of users, the direct executable installer is the recommended method. It is stable, simple, and includes an automatic downloader for required libraries.

MethodBest ForDifficulty
1. Via Windows InstallerAll users. The simplest and most reliable way to get started.Easy
2. From Source CodeDevelopers, advanced users, or those on other operating systems.Medium

This is the most straightforward way to install the application. The installer handles setting up shortcuts, file associations, and the application’s core files. Currently, an official installer is only available for Windows.

Installation Steps

  1. Download: Go to the project’s official GitHub Releases Page and download the latest EasyScanlate-Installer.exe.
  2. Install: Run the .exe installer. It will guide you through the standard installation process.
  3. Finish Installation: Complete the setup, but do not run the application yet.

Crucial Step: Add Antivirus Exclusion (BEFORE First Launch)

IMPORTANT: You must complete this step before you run the application for the first time. If you do not, your antivirus software (especially Windows Defender) will likely quarantine or delete the main executable file (main.exe), preventing the application from starting.

Why does this happen? This is a false positive. The application is built using a tool called Nuitka, which compiles Python code into an executable. The methods used by this compiler are sometimes incorrectly flagged as suspicious by antivirus programs.

How to Add an Exclusion to Windows Defender:

  1. Open the Start Menu, type Windows Security, and open the app.
  2. Go to Virus & threat protection.
  3. Under “Virus & threat protection settings,” click Manage settings.
  4. Scroll down to the “Exclusions” section and click Add or remove exclusions.
  5. Click the + Add an exclusion button and select Folder.
  6. In the file dialog that appears, navigate to the installation directory. The default location is: C:\Program Files\EasyScanlate or C:\Program Files (x86)\EasyScanlate
  7. Select the EasyScanlate folder and click Select Folder.

By adding this exclusion, you ensure that Windows Defender will not interfere with the application’s files.

First-Time Launch: Model Download

After you have added the antivirus exclusion, you can safely launch the application for the first time.

Easy Scanlate uses RapidOCR for text recognition. On first use, it will automatically download the required ONNX models (a small download, typically under 100MB).

Configure API Keys (For AI Translation)

To use the AI Translation feature, you need to configure an API key:

  1. Get an API Key:
    • Mistral (Recommended): Get an API key from Mistral AI Console (1 billion tokens/month free tier)
    • Gemini: Get a free API key from Google AI Studio (requires Google account, 20 requests per model per day)
  2. Add Key to Settings: Open Easy Scanlate, go to Settings (Ctrl+,)AI Translation tab, and enter your API key

Note: AI Translation is optional. The application works without an API key for OCR and editing functionality.


2. From Source Code (Alternative Method)

This method is for developers, users on operating systems other than Windows, or those who want access to the very latest updates between official releases. It requires installing Python and Git manually.

Prerequisites

Before proceeding, ensure you have Python and Git installed on your system.

  1. Download: Go to the official Python website: python.org/downloads/
  2. Run Installer: Launch the installer.
  3. Important (Windows): On the first page of the installer, you must check the box labeled “Add Python to PATH” or “Add python.exe to PATH”. This step is crucial for running Python from the command line. Add Python to PATH checkbox
  4. Complete the installation using the default settings.

B. Install Git

Git is required to download (clone) the application’s source code from its repository.

  1. Download: Go to the official Git website: git-scm.com/downloads
  2. Run Installer: Launch the installer and proceed with the default recommended settings.

Installation Steps

The following steps should be performed in a command-line interface (e.g., Terminal on macOS/Linux or Command Prompt (CMD) / PowerShell on Windows).

Step 1: Create a Folder and Download the Code

First, create a dedicated folder for the tool and download the source code into it.

  1. Create and Navigate to a Project Folder:

    mkdir EasyScanlate
    cd EasyScanlate
  2. Download (Clone) the Application Repository: This command uses Git to download the source code into your current folder.

    # Note the space and dot " ." at the end.
    git clone https://github.com/Liiesl/EasyScanlate.git .
For Advanced Users: Using a Virtual Environment (Optional)

If you are a developer and prefer to keep project dependencies isolated, you can create and activate a virtual environment after running cd EasyScanlate.

# Create the virtual environment
# On Windows: 
python -m venv venv
# On macOS/Linux: 
python3 -m venv venv

# Activate it (must be done each time you open a new terminal)
# On Windows: 
.\venv\Scripts\activate
# On macOS/Linux: 
source venv/bin/activate

A (venv) prefix will appear in your terminal prompt when it’s active. All subsequent pip install commands will apply only to this environment.

Step 2: Install Dependencies

Install the required Python libraries from the requirements.txt file.

# On Windows
pip install -r requirements.txt

# On macOS or Linux
pip3 install -r requirements.txt

Step 3: Run the Application

Launch the tool from your terminal. Make sure you are still inside the EasyScanlate directory.

# On Windows (if 'py' launcher is configured)
py main.py

# On Windows (alternative)
python main.py

# On macOS or Linux
python3 main.py

Note: Use py main.py if you have the Python launcher configured on Windows. Use python main.py for standard Windows Python installations. Use python3 main.py on macOS and Linux systems where Python 2 and 3 coexist.