-3

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.

Julien Marrec
  • 11,605
  • 4
  • 46
  • 63
misbah
  • 183
  • 1
  • 2
  • 8
  • how did you install the package? looks like it wasn't installed properly. where did you find the package? – matias elgart Nov 13 '16 at 12:27
  • i downloaded the package from this link "https://pypi.python.org/pypi/language-check" and past in my nltk_data folder – misbah Nov 13 '16 at 12:35

1 Answers1

0

You need to properly install the package first, for example using

pip install language_check

here are a couple of links to help you:

Community
  • 1
  • 1
Julien Marrec
  • 11,605
  • 4
  • 46
  • 63