contextualSpellCheck module cannot be loaded #10610
-
Hi guys, By using the following resource, I am trying to install the spell check library: https://spacy.io/universe/project/contextualSpellCheck But after doing the pip install and then importing cpntextualSpellCheck, I get an error "No module named 'contextualSpellCheck'". Any advice? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @Abe410 , Just to sanity-check, did
Another thing to check is your environment, are you importing |
Beta Was this translation helpful? Give feedback.
Hi @Abe410 ,
Just to sanity-check, did
contextualSpellCheck
install without any problems? You can refer to the installation logs to be sure. One of its dependencies,editdistance
, requireswheel
to be installed, so you might want to do something like:Another thing to check is your environment, are you importing
contextualSpellCheck
in the same environment where you installed it? You can avoid env problems by creating virtual environments and the like.