How to remove nltk from python and from my system and also from command prompt

10.8k Views Asked by At

I tried downloading nltk by using the command on the python command prompt

import nltk
nltk.download() //after this it started downloading

Now I want to delete all the nltk files from my system, please help in uninstalling and removing all the files of nltk.

1

There are 1 best solutions below

0
On

Linux -

Open up a terminal and type sudo pip uninstall nltk

Windows -

To uninstall NLTK 3:

Open the directory C:/Python27/Lib/site-packages

Delete: nltk and nltk-3.0...egg-info

Refer -

How to remove an data/models from nltk dowloader?

How to uninstall a package installed with pip install --user

Na-Rae Han's Python/NLTK FAQ