I am facing an issue when trying to call spaCy into my Jupyter notebook. When I run
import spacy
I get the below:
I have used spaCy before many times with no issue, but I noticed this problem began after I was trying to also install from neuralcoref import Coref
and am not sure if that has caused this.
When I go into the terminal and run conda list spacy
it looks like spaCy is available:
I do not really understand what the errors are suggesting, but I tried to reinstall murmurhash using conda install -c anaconda murmurhash
after which I got this. This is just a screenshot of the first few but there are MANY packages that are allegedly causing the inconsistency:
Following the list of packages causing inconsistencies, I get this:
For reference, I am using MacOS and python 3.7. How can I fix this?
spacy>=3.0
and neuralcoref
are currently not compatible - the Cython API of spaCy's v3 has changed too much. This might be causing conflicts in your environment?