Hello,
I’m testing Datalore and working with Colab. There I could simply execute the following code:
#nltk
nltk.download(‘stopwords’)
stopword_list = stopwords.words(‘english’)
#spacyce
spacy.cli.download(“de_core_news_sm”)
nlp = spacy.load(‘de_core_news_sm’)
This does not seem to go directly here. Is there an alternative way to do this?