Instructions to use d4data/en_pipeline with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- spaCy
How to use d4data/en_pipeline with spaCy:
!pip install https://huggingface.co/d4data/en_pipeline/resolve/main/en_pipeline-any-py3-none-any.whl # Using spacy.load(). import spacy nlp = spacy.load("en_pipeline") # Importing as module. import en_pipeline nlp = en_pipeline.load() - Notebooks
- Google Colab
- Kaggle
Error facing in installing
#1
by Sahaana95 - opened
Hi when i try to install i am facing this issue
!pip install https://huggingface.co/d4data/en_pipeline/resolve/main/en_pipeline-any-py3-none-any.whl
ERROR: Invalid requirement: 'en-pipeline==any': Expected end or semicolon (after name and no valid version specifier)
en-pipeline==any
Hi :)
I had the same problem and this worked:
pip install "en_pipeline @ https://huggingface.co/d4data/en_pipeline/resolve/main/en_pipeline-any-py3-none-any.whl"