mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +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:
|
||||
if use_jieba:
|
||||
msg = (
|
||||
"Jieba not installed. Either set Chinese.use_jieba = False, "
|
||||
"or install it https://github.com/fxsjy/jieba"
|
||||
"Jieba not installed. Either set the default to False with "
|
||||
"`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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user