Install NLTK In Python 2.7 For 64-bit Machine
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.
Solution 1:
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
Post a Comment for "Install NLTK In Python 2.7 For 64-bit Machine"