This course is written in python with two major libraries used for natural language processing spacy and nltk
This course expects that you have basic understanding of python3 programming language. It is highly reccomended that you use jupyter notebooks(.ipynb) using Anaconda distribution for this course as it enables beautiful visualizations.
using anaconda
conda install -c conda-forge spacy
using pip (pip3 for linux and macos)
pip install -U spacy
python -m spacy download en_core_web_sm (small will be sufficient for beginners)