You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having extreme issues trying to install spaCy locally, I've read all the docs, and have tried searching online to see if I could find someone having the same problem as me, but haven't been able to solve it.
I'm wanting to use spaCy for a machine learning project I'm working on with university.
I'm using a new windows 10 laptop that I haven't used for any other development so far, so this means I've had to start from scratch in regards to build tools, python language etc.
Python language -> 3.8.0 64 bit.
Visual studio -> tried C++build tools/ express for 2017 & 2019 editions.
How to reproduce the problem
I initially tried 'pip install spacy' & 'pip install -U spacy' but this fails when installing backend dependencies. When these both failed, I checked my pip was updated (tried deleting pip cache as well), and my python was definitely 64-bit. The summarised error I got is below:
ERROR: Command errored out with exit status 1: 'c:\users\james\appdata\local\programs\python\python38\python.exe''c:\users\james\appdata\local\programs\python\python38\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\james\AppData\Local\Temp\pip-build-env-0thrl73l\normal' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'thinc<7.4.0,>=7.3.0''preshed<3.1.0,>=3.0.2''murmurhash<1.1.0,>=0.28.0''cython>=0.25''cymem<2.1.0,>=2.0.2' wheel Check the logs for full command output.
I then tried to install it from source, using a virtual environment. So I followed the commands on the website. And it was cloning okay, but then it was failing when I tried to install the pip requirements. I don't think it can successfully install blis, I also tried to do this individually but got the same error.
Any ideas what's going on here? I have tried uninstalling python, visual studio and reinstalling these but nothing seems to work. Is spacy supported on python 3.8.0? I'm wondering if it's an issue with my compiler but I'm honestly not sure, i'm assuming if blis can be installed, it would work fine. Any help would be greatly appreciated.
Your Environment
Operating System: Windows 10
Python Version Used: 3.8.0
spaCy Version Used: latest version
Environment Information: Using windows powercell & git bash to run commands, tried installing library on pycharm as well, but it also didnt't work
The text was updated successfully, but these errors were encountered:
I think the main thing that's causing problems here is that you're using Python 3.8. We can't yet ship pre-compiled wheels for Python 3.8 (unfortunately it's not fully supported by any CI providers we use at the moment), so if you want to install spaCy on 3.8, you have to build everything from source. And that seems to fail, likely due to how your compiler is configured, which is not correct for compiling blis.
I'm having extreme issues trying to install spaCy locally, I've read all the docs, and have tried searching online to see if I could find someone having the same problem as me, but haven't been able to solve it.
I'm wanting to use spaCy for a machine learning project I'm working on with university.
I'm using a new windows 10 laptop that I haven't used for any other development so far, so this means I've had to start from scratch in regards to build tools, python language etc.
Python language -> 3.8.0 64 bit.
Visual studio -> tried C++build tools/ express for 2017 & 2019 editions.
How to reproduce the problem
I initially tried 'pip install spacy' & 'pip install -U spacy' but this fails when installing backend dependencies. When these both failed, I checked my pip was updated (tried deleting pip cache as well), and my python was definitely 64-bit. The summarised error I got is below:
I then tried to install it from source, using a virtual environment. So I followed the commands on the website. And it was cloning okay, but then it was failing when I tried to install the pip requirements. I don't think it can successfully install blis, I also tried to do this individually but got the same error.
resulting in the following error
Any ideas what's going on here? I have tried uninstalling python, visual studio and reinstalling these but nothing seems to work. Is spacy supported on python 3.8.0? I'm wondering if it's an issue with my compiler but I'm honestly not sure, i'm assuming if blis can be installed, it would work fine. Any help would be greatly appreciated.
Your Environment
The text was updated successfully, but these errors were encountered: