My Code:
import nltk.data tokenizer = nltk.data.load(\'nltk:tokenizers/punkt/english.pickle\')
ERROR Message:
[ec2-user@ip-
To add to alvas' answer, you can download only the punkt corpus:
punkt
nltk.download('punkt')
Downloading all sounds like overkill to me. Unless that's what you want.
all