Python Pip SpaCy Installation Error With C++ And Murmurhash
EDIT: see the comments for the correct answer. Hi Guys here is a problem I have been having that deals with installing the NLP program SpaCY. I tried both pip install -U spacy and
Solution 1:
I have the similar problems as yours. And the short answer is using conda instead of pip to install spacy. Try conda install spacy because it will automatically install the dependencies. I suffered a lot using pip as it needs corresponding VSC++2015(for python 3.5+) compiler tools to build the source while installing spacy.
By the way, download the spacy whl file and then use pip install doesn't work out for me.
Post a Comment for "Python Pip SpaCy Installation Error With C++ And Murmurhash"