Programmatically install NLTK corpora / models, i.e. without the GUI downloader?

后端 未结 4 657
盖世英雄少女心
盖世英雄少女心 2020-12-12 15:56

My project uses the NLTK. How can I list the project\'s corpus & model requirements so they can be automatically installed? I don\'t want to click through the nltk

4条回答
  •  甜味超标
    2020-12-12 16:37

    The NLTK site does list a command line interface for downloading packages and collections at the bottom of this page :

    http://www.nltk.org/data

    The command line usage varies by which version of Python you are using, but on my Python2.6 install I noticed I was missing the 'spanish_grammar' model and this worked fine:

    python -m nltk.downloader spanish_grammars
    

    You mention listing the project's corpus and model requirements and while I'm not sure of a way to automagically do that, I figured I would at least share this.

提交回复
热议问题