Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitextor/bicleaner-ai.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaume Zaragoza <ZJaume@users.noreply.github.com>2022-10-05 19:19:09 +0300
committerGitHub <noreply@github.com>2022-10-05 19:19:09 +0300
commit39326eab2026b168fdb487cdc02ffe873f3345f2 (patch)
tree6ed928bb29935d88d88ec63f83582c5fc7c999b0
parentcd3f128ddd41fa59b0d7ca9904bf4a5a98c1cbb5 (diff)
Update installation commandHEADmaster
Latest was forcing source tarball to be used instead of wheel. Tarball is ok but since wheel will be available, prefer to use it.
-rw-r--r--README.md5
1 files 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`: