From 39326eab2026b168fdb487cdc02ffe873f3345f2 Mon Sep 17 00:00:00 2001 From: Jaume Zaragoza Date: Wed, 5 Oct 2022 16:19:09 +0000 Subject: Update installation command Latest was forcing source tarball to be used instead of wheel. Tarball is ok but since wheel will be available, prefer to use it. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c98599..4c8dffd 100644 --- a/README.md +++ b/README.md @@ -49,10 +49,11 @@ The use of XLMRoberta and 1:10 positive to negative ratio were inspired in the w Bicleaner AI is written in Python and can be installed using `pip`. It also requires the [KenLM](https://github.com/kpu/kenlm) Python bindings with support for 7-gram language models. -You can easily install it by running the following command: +You can easily install it by running the following commands: ```bash -pip install bicleaner-ai https://github.com/kpu/kenlm/archive/master.zip --install-option="--max_order 7" +pip install bicleaner-ai +pip install https://github.com/kpu/kenlm/archive/master.zip --install-option="--max_order 7" ``` Hardrules uses [FastSpell](https://github.com/mbanon/fastspell) that requires `python-dev` and `libhunspell-dev`: -- cgit v1.2.3