Kavan Patel
Kavan Patel

Reputation: 59

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.

Upvotes: 2

Views: 5529

Answers (1)

Rahila T - Intel
Rahila T - Intel

Reputation: 862

Follow these steps:

  1. conda create -n nltk_env python=2.7

  2. source activate nltk_env

  3. conda install nltk -c intel

  4. try importing it like below

    import nltk
    

Upvotes: 2

Related Questions