spacy 3.0.6 installation failure #12941
-
Hello, I am trying to install spacy 3.0.6 but am receiving some errors during the installation. I have done this install numerous times in the past without any issues and am not sure what's causing the issue this time. The code I am running is I am looking for a solution to this problem. The error that I am receiving is as follows:
Environment Info:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
The installation error appears to be caused by a change in the pip install Cython==0.29.36
pip install spacy==3.0.6 --no-build-isolation That should prevent the |
Beta Was this translation helpful? Give feedback.
-
In my case solved with the solution provided here: #13449 (comment) |
Beta Was this translation helpful? Give feedback.
-
In case you are wondering what is minimal installation in for build tools here is that: After which this two commands work: Python 3.10.11
Guys only consider for the moment writing this comment the secret is in Cython==0.29.37, consider it is 37 not lower version And probably you are here because you can not install TTS so bonus here is:
|
Beta Was this translation helpful? Give feedback.
The installation error appears to be caused by a change in the
cython
package that was introduced in v3.0.0. Could you try the following?That should prevent the
cython
package from being upgraded during the installation, thereby avoiding the compiler error.