2

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.

Ani Menon
  • 27,209
  • 16
  • 105
  • 126

1 Answers1

2

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

Ani Menon
  • 27,209
  • 16
  • 105
  • 126