In order to install SpaCy the open-source natural language processing (NLP) library for analyzing textual data follow the below steps.
Using conda
- Open Terminal.
- Type the commands,
% conda install -c conda-forge spacy % python -m spacy download en_core_web_sm
You can also create a new virtual environment and get spaCy installed in it by running the below commands before the above one.
conda create -n venv conda activate venv
Using pip
% pip install -U pip setuptools wheel
% pip install -U spacy
% python -m spacy download en_core_web_sm
If you are using the M1/M2 Apple Silicon ARM Chip based Mac's
pip install -U pip setuptools wheel
pip install -U 'spacy[apple]'
python -m spacy download en_core_web_sm
You can add trained pipelines in other languages as well, below is the list available till April 2023

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- Clone a particular remote brach using git clone command - Git
- Fix Error 2711 SQL RBS client - The installer has encountered an unexpected error. The specified Feature name ('Docs') not found in Feature table - SharePoint
- How to Check if a Date is Empty (null) or not in Java - Java
- Install Bash on Alpine Linux - Docker - Docker
- [fix] bash: ssh: command not found - Bash
- Fix: This file is set to read-only. Try again with a different file name. [Windows 10/11] - Windows
- Android xml error Attribute is missing the Android namespace prefix [Solution] - Android
- Create Safari Shortcut on Mac Desktop - MacOS