Skip to content
Advertisement

Spacy Installation error in python, with pip command

Thanks for looking into this, I was trying to install spacy with python 3.8 ( I tried it with 3.7.9 interpreter too ) But apparently It has been giving me following errors. Command used pip install spacy

JavaScript

can you please suggest me possible fixes ?

Advertisement

Answer

There may be a problem with your pip cache and/or your pip version:

Try this:

  1. Delete your pip cache as it may appear to be causing troubles.

On windows it is located on:

C:UsersYOUR_USERNAMEAppDataLocalpipcache

Just delete the folder.

  1. Then update pip to the latest version for the installation to work,

python -m pip install --upgrade pip

  1. After this process, try installing spaCy again:

python -m pip install spacy

or else, you could also try to Uninstall Python 32-bit and install Python-64 bit.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement