Is there any way to install the linguistic English library through pip install?

The NodeBox English language library for Python has some nice features, such as pairing, that can be very useful for a project.

I tried installing through pip in a specific virtualenv, but pip search nodebox only calls:

 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 possible to install it (in virtual space) with a different name? Or is this the only way to install on

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 in time.

as indicated on their website?

+4
source share
1 answer

The Nodebox library managed to execute the pattern , which is in PyPI. NLP functionality is contained in the pattern.en module. It can be installed using

 pip install pattern 
+6
source

All Articles