From 17a817528ddd8e5610899d561af0326dedf64957 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 11 Apr 2023 21:01:14 +0200 Subject: [PATCH] Fix Spacy command --- utils/posttextparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/posttextparser.py b/utils/posttextparser.py index f10eb76..7e504a8 100644 --- a/utils/posttextparser.py +++ b/utils/posttextparser.py @@ -14,7 +14,7 @@ def posttextparser(obj): nlp = spacy.load("en_core_web_sm") except OSError: print_step( - "The spacy model can't load. You need to install it with \npython -m spacy download en" + "The spacy model can't load. You need to install it with the command \npython -m spacy download spacy download en_core_web_sm" ) exit()