Skip to content

Installation

Simple installation

To set up pyJudilibre, you can install it from PyPI.

pip install pyjudilibre

You can also install it directly from Github:

git clone https://github.com/pauldechorgnat/pyJudilibre.git
cd pyJudilibre
pip install .

Requirements

This library relies on:

Extras

pyJudilibre comes with extras:

  • dev: requirements to allow library development
  • build: requirements to build the library
  • test: requirements to test the library
  • doc: requirements to build the documentation of the library

For development purposes, it is advised to build a virtual environment called venv:

git clone https://github.com/pauldechorgnat/pyJudilibre.git
cd pyJudilibre

python3 -m venv venv
source venv/bin/activate

pip install '.[dev,build,test,doc]'