mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 09:56:28 +03:00
Modify jieba install message (#5328)
Modify jieba install message to instruct the user to use `ChineseDefaults.use_jieba = False` so that it's possible to load pkuseg-only models without jieba installed.
This commit is contained in:
parent
b919844fce
commit
bf5c13d170
|
@ -30,8 +30,10 @@ def try_jieba_import(use_jieba):
|
||||||
except ImportError:
|
except ImportError:
|
||||||
if use_jieba:
|
if use_jieba:
|
||||||
msg = (
|
msg = (
|
||||||
"Jieba not installed. Either set Chinese.use_jieba = False, "
|
"Jieba not installed. Either set the default to False with "
|
||||||
"or install it https://github.com/fxsjy/jieba"
|
"`from spacy.lang.zh import ChineseDefaults; ChineseDefaults.use_jieba = False`, "
|
||||||
|
"or install it with `pip install jieba` or from "
|
||||||
|
"https://github.com/fxsjy/jieba"
|
||||||
)
|
)
|
||||||
raise ImportError(msg)
|
raise ImportError(msg)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user