This repo contains code from the blog Using spaCy for Natural Language Processing.
If you want to follow along with the tutorial, you can follow the sequence of steps provided in the code block below:
- Create a virtual environment from the terminal
- Activate the virtual environment
- Install all Python packages used to create this tutorial from the
requirements.txt
file included in this repo.
# current working directory is the parent dir (intro-to-spacy)
mkdir .env
python3 -m venv .env/spacy-playground
source .env/spacy-playground/bin/activate
pip3 install -r requirements.txt