Unable to install spaCy version 2.2.3 #10872
-
I am unable to install spaCy version 2.2.3 using pip. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In general, you'll have an easier time installing spacy v2.2.3 if you use a python version that was supported when it was released so that you can use precompiled wheels instead of compiling from source. It looks like python 3.8 or earlier is supported. You can check for the python versions with wheels by looking at the "Download files" list on PyPI for this version: https://pypi.org/project/spacy/2.2.3/#files If you do really want to compile from source, you'll need LLVM to compile blis in windows ( https://github.com/explosion/cython-blis/tree/v0.4.1#installation |
Beta Was this translation helpful? Give feedback.
In general, you'll have an easier time installing spacy v2.2.3 if you use a python version that was supported when it was released so that you can use precompiled wheels instead of compiling from source. It looks like python 3.8 or earlier is supported.
You can check for the python versions with wheels by looking at the "Download files" list on PyPI for this version: https://pypi.org/project/spacy/2.2.3/#files
If you do really want to compile from source, you'll need LLVM to compile blis in windows (
choco install llvm
is one option):https://github.com/explosion/cython-blis/tree/v0.4.1#installation