-
Notifications
You must be signed in to change notification settings - Fork 477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error installation using spaCy from source code #209
Comments
Hi @swicaksono , can you try downgrading spaCy to 2.1.0. and check again? If it still doesn't work - could you provide the details of your installation (+ version numbers of spaCy and neuralcoref) and the exact error you're getting? |
So my project folder structure is like this.
In the README installation guidelines, we install spaCy by using pip, on this occasion, I want to install it from source. So before run the
I modified the neuralcoref.pyx to read the spacy from the path I install it by adding theses lines before importing the spacy
But then I run the pip install again, I got this following error:
The source code versions: So what suggests to solve this problem? |
Hi, I am having a same error as @swicaksono when trying to install nueralcoref from source. My source code versions: In the meantime I will downgrade spacy to version 2.1.0 Full stack trace:
|
It looks like spaCy > 2.1.8 is currently incompatible with neuralcoref 4.0. There are two options:
Merging with Issue #197 |
Is there any plan to make it compatible with the 2.1.8 ? |
Went back and used spacy=2.1.0 and neuralcoref !pip install spacy==2.1.0 import spacy nlp = en_core_web_lg.load() Everything runs fine now. |
Line 227 in 0cff3c9
changing this to worked for me. |
This worked for me: pip install spacy==2.1.0 |
I got an error when tried to install neuralcoref using spaCy which I install via source code. I modified the neuralcoref/neuralcoref.pyx to import spacy from the path I was installed the spaCy instead from the library. The following error was the cython module. In fact, the cython was correctly installed as well as the spaCy from the source.
Any help? Thanks.
The text was updated successfully, but these errors were encountered: