/intro-to-spacy

Code for introductory blog to spaCy

Primary LanguagePython

Introduction to spaCy for Natural Language Processing

This repo contains code from the blog Using spaCy for Natural Language Processing.

Getting Started

If you want to follow along with the tutorial, you can follow the sequence of steps provided in the code block below:

  1. Create a virtual environment from the terminal
  2. Activate the virtual environment
  3. 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