I have installed NLTK module but when I try to install the data I am getting the error below.
>>>import nltk
>>> nltk.download('punkt')
[nltk_data] Error loading punkt: <urlopen error [Errno 11004]
[nltk_data] getaddrinfo failed>
False
How should I install the data?

nltk.download()and then find the package you want. Error message implies to me that the package isn't calledpunkt, which I believe is the case. It's called something else. - Slater Victoroff