I want to use stopwords in my code on google colab, there are no errors when I import stuff regarding nltk but when I use stopwords in my code google colab gives this error:-
Resource 'corpora/stopwords.zip/stopwords/' not found. Please
use the NLTK Downloader to obtain the resource: >>>
nltk.download()
But when I do:-
import nltk
nltk.download()
It gives me all the packages list so I have to select 1 to download, in terminal I could do "all" to download all packages but how an I do that in google colab? I don't want to add a name everytime to download stuff. this is what colab shows me when I do "nltk.download()":-
Downloader> d
Download which package (l=list; x=cancel)?
Is there any way I can download all packages of nltk at once to my project in google colab?
I reached this page When I faced same problem.
I can use "popular" with this code at google colab.
import nltk
nltk.download("popular")
Use:
import nltk
nltk.download('all')
It worked for me.
You have several other options:
all-corpora......... All the corpora
all-nltk............ All packages available on nltk_data gh-pages
branch
all................. All packages
book................ Everything used in the NLTK Book
popular............. Popular packages
tests............... Packages for running tests
You can use them as :
import nltk
nltk.download('book')
#or
nltk.download('tests')
#or
nltk.download('all-corpora')# not recommended as it download huge amount of data.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With