Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is there a way to install the nodebox English linguistics library through pip install?

Tags:

pip

nlp

nodebox

The NodeBox English linguistic library for Python has some nice features, like conjugation, that could be very useful for a project.

I tried installing through pip in a particular virtualenv, but pip search nodebox only brings up:

NodeBox                   - Simple application for creating 2-dimensional
                            graphics and animation using Python code
nodebox-color             - Color classes for python
NodeBox-for-OpenGL        - 2D animation with Python code
nodebox-opengl            - NodeBox for OpenGL is a free, cross-platform
                            library for generating 2D animations with Python
                            programming code.

Is it pip-installable (in a virtualenv) by another name maybe? Or is the only way to install to

Put the en library folder in the same folder as your script so NodeBox can find the library. You can also put it in ~/Library/Application Support/NodeBox/. It takes some time to load all the data the first time.

as stated on their website?

like image 919
arturomp Avatar asked Jan 12 '23 07:01

arturomp


1 Answers

The Nodebox library has been succeeded by pattern, which is on the PyPI. The NLP functionality is contained in the pattern.en module. It can be installed with:

pip install pattern
like image 146
Steve L Avatar answered Jan 17 '23 11:01

Steve L