Closed
Description
First I installed neuralcoref and its dependencies using pip in my global python environment..
When I run the script containing
import spacy
import neuralcoref
nlp = spacy.load('en')
neuralcoref.add_to_pipe(nlp)
doc1 = nlp('My sister has a dog. She loves him.')
print(doc1._.coref_clusters)
doc2 = nlp('Angela lives in Boston. She is quite happy in that city.')
for ent in doc2.ents:
print(ent._.coref_cluster)
Then I tried installing neuralcoref with source, When I run the command
pip install -e .
in cloned neuralcoref path, It throws error like below:
Kindly anyone help me to resolve this issue
Thanks in Advance.