I have installed Anaconda 3.x for 64 bit in a Windows 10 system. I have installed spacy by pip install -U spacy
WHen i run install spacy
in Notebook i get an 'DLL Load' error like this
I have installed Anaconda 3.x for 64 bit in a Windows 10 system. I have installed spacy by pip install -U spacy
WHen i run install spacy
in Notebook i get an 'DLL Load' error like this
You can install spacy and download en in the jupyter notebook as:
import sys
!{sys.executable} -m pip install spacy
!{sys.executable} -m spacy download en
!conda install -c spacy spacy=0.101.0 -y
!python -m spacy.en.download
! pip install SpaCy
! python -m spacy download en
This really worked !
To install spacy on jupyter notebook use pip install SpaCy
Spacy configuration in Anaconda