-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Rafael JPD edited this page Mar 3, 2025
·
1 revision
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.0To set up a development environment, follow these steps:
-
Clone the repository:
git clone https://github.com/scieloorg/scielo_log_validator.git cd scielo_log_validator -
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install dependencies:
pip install -r requirements.txt
-
Install the package in editable mode:
pip install -e . -
Run tests to ensure everything is set up correctly:
python -m unittest discover