I have download language-check package and pasted in D:\Lib\site-packages\nltk
but when I type the code over python interpreter as:
import language_check
It gives me an error: no module named language_check
.
I have download language-check package and pasted in D:\Lib\site-packages\nltk
but when I type the code over python interpreter as:
import language_check
It gives me an error: no module named language_check
.
You need to properly install the package first, for example using
pip install language_check
here are a couple of links to help you: