From 5131f32440c19e2f3975beef7701433614afa166 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Tue, 13 Aug 2024 17:21:47 +0200 Subject: [PATCH] MINOR: release-estimator: add installation steps in README.md Update the README.md with the dependencies and the installation steps with a python venv. --- admin/release-estimator/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/admin/release-estimator/README.md b/admin/release-estimator/README.md index a51f731d3c..e706dbf24b 100644 --- a/admin/release-estimator/README.md +++ b/admin/release-estimator/README.md @@ -7,6 +7,21 @@ the queue. ## Requirements - Python 3.x - [lxml](https://lxml.de/installation.html) + - requests + - urllib3 + + +## Installation +It can be easilly installed with venv from python3 + + + $ python3 -m venv ~/.local/venvs/stable-bot/ + $ source ~/.local/venvs/stable-bot/bin/activate + $ pip install -r requirements.txt + +And can be executed with: + + $ ~/.local/venvs/stable-bot/bin/python release-estimator.py ## Usage