spaCy - NLP for python

on my laptop, I have anaconda3 installed

To install spaCy  (https://spacy.io/docs/usage/)

conda config --add channels conda-forge
conda install spacy
python -m spacy download en
encounter following err
  File "C:\Anaconda3\lib\pathlib.py", line 377, in wrapped
    return strfunc(str(pathobjA), str(pathobjB), *args)
OSError: symbolic link privilege not held

search/found https://github.com/explosion/spaCy/issues/915
need to ran python -m spacy link en_core_web_sm en as admin and everything works now


https://spacy.io/docs/usage/lightning-tour


Tutorials


https://nicschrading.com/project/Intro-to-NLP-with-spaCy/

Install spacy.io website locally
The [spacy.io](https://spacy.io) website is implemented in [Jade (aka Pug)](https://www.jade-lang.org), and is built or served by [Harp](https://harpjs.com).

1) install npm harp
npm install --global harp

2) cd D:\machine_learn\spacy\spaCy-master\website
harp server (start harp server locally)

3) open browser at  url = http://localhost:9000/ 

Comments