Reputation: 59
How to install NLTK in Python2.7? There is NLTK package for 32 bit but what about 64? Moreover, I am unable to install NLTK wheel file by pip.
Upvotes: 2
Views: 5529
Reputation: 862
Follow these steps:
conda create -n nltk_env python=2.7
source activate nltk_env
conda install nltk -c intel
try importing it like below
import nltk
Upvotes: 2