Installation
You can install the package using pip or poetry. The following instructions assume you have Python 3.9 or later installed.
Optional Step: Create a Virtual Environment
It’s recommended to create a virtual environment before installing the package to avoid dependency conflicts. You can create one using the following command:
python3 -m venv .venv
Then, activate the virtual environment:
On Unix or macOS:
source .venv/bin/activate
On Windows (Command Prompt):
.venv\Scripts\activate
On Windows (PowerShell):
.venv\Scripts\Activate.ps1
1. Using pip (from PyPI)
You can install the package using pip:
pip install roc-validator
2. Using poetry (from source)
Clone the repository:
git clone https://github.com/crs4/rocrate-validator.git
Navigate to the project directory:
cd rocrate-validator
Ensure you have Poetry installed. If not, follow the instructions here. Then, install the package using poetry:
poetry install