Skip to content

Installation

Rafael JPD edited this page Mar 3, 2025 · 1 revision

Installation

To install SciELO Log Validator, you can use pip.

# First, make sure both pip and setuptools are up to date:
pip install --upgrade pip setuptools

# Install the latest version (0.4.0 as of March 2025). Replace 0.4.0 with the latest version if available
pip install git+https://github.com/scieloorg/scielo_log_validator@0.4.0

Development Environment Setup

To set up a development environment, follow these steps:

  1. Clone the repository:

    git clone https://github.com/scieloorg/scielo_log_validator.git
    cd scielo_log_validator
  2. Create a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On Windows use `venv\Scripts\activate`
  3. Install dependencies:

    pip install -r requirements.txt
  4. Install the package in editable mode:

    pip install -e .
  5. Run tests to ensure everything is set up correctly:

    python -m unittest discover

Clone this wiki locally